golang-im聊天
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

24 行
426 B

  1. package friend
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func Test_friendDao_Get(t *testing.T) {
  7. friend, err := FriendRepo.Get(1, 2)
  8. fmt.Printf("%+v \n %+v \n", friend, err)
  9. }
  10. func Test_friendDao_Save(t *testing.T) {
  11. fmt.Println(FriendRepo.Save(&Friend{
  12. UserId: 1,
  13. FriendId: 2,
  14. }))
  15. }
  16. func Test_friendDao_List(t *testing.T) {
  17. friends, err := FriendRepo.List(1, FriendStatusAgree)
  18. fmt.Printf("%+v \n %+v \n", friends, err)
  19. }