dao_test.go 983 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package account
  2. import (
  3. "context"
  4. "reflect"
  5. "testing"
  6. "go-common/app/interface/main/app-feed/conf"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestNew(t *testing.T) {
  10. type args struct {
  11. c *conf.Config
  12. }
  13. tests := []struct {
  14. name string
  15. args args
  16. }{
  17. // TODO: Add test cases.
  18. }
  19. for _, tt := range tests {
  20. Convey(tt.name, func(t *testing.T) {
  21. gotD := New(tt.args.c)
  22. So(gotD, ShouldNotBeNil)
  23. })
  24. }
  25. }
  26. func TestDao_Relations2(t *testing.T) {
  27. type args struct {
  28. c context.Context
  29. owners []int64
  30. mid int64
  31. }
  32. tests := []struct {
  33. name string
  34. d *Dao
  35. args args
  36. wantFollows map[int64]bool
  37. }{
  38. // TODO: Add test cases.
  39. }
  40. for _, tt := range tests {
  41. t.Run(tt.name, func(t *testing.T) {
  42. if gotFollows := tt.d.Relations3(tt.args.c, tt.args.owners, tt.args.mid); !reflect.DeepEqual(gotFollows, tt.wantFollows) {
  43. t.Errorf("Dao.Relations2() = %v, want %v", gotFollows, tt.wantFollows)
  44. }
  45. })
  46. }
  47. }