golang-im聊天
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

auth_cache_test.go 380 B

il y a 2 ans
1234567891011121314151617181920212223
  1. package repo
  2. import (
  3. "fmt"
  4. "gim/internal/business/domain/user/model"
  5. "testing"
  6. )
  7. func TestAuthCache_Get(t *testing.T) {
  8. fmt.Println(AuthCache.Get(1, 1))
  9. }
  10. func TestAuthCache_Set(t *testing.T) {
  11. fmt.Println(AuthCache.Set(1, 1, model.Device{
  12. Type: 1,
  13. Token: "111",
  14. Expire: 111,
  15. }))
  16. }
  17. func TestAuthCache_GetAll(t *testing.T) {
  18. fmt.Println(AuthCache.GetAll(1))
  19. }