golang-im聊天
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

24 satır
380 B

  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. }