You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.1 KiB
60 lines
1.1 KiB
package ping |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
|
|
"go-common/app/interface/main/app-feed/conf" |
|
arcdao "go-common/app/interface/main/app-feed/dao/archive" |
|
adtdao "go-common/app/interface/main/app-feed/dao/audit" |
|
) |
|
|
|
func TestNew(t *testing.T) { |
|
type args struct { |
|
c *conf.Config |
|
} |
|
tests := []struct { |
|
name string |
|
args args |
|
wantS *Service |
|
}{ |
|
// TODO: Add test cases. |
|
} |
|
for _, tt := range tests { |
|
Convey(tt.name, t, func() { |
|
gotS := New(tt.args.c) |
|
So(gotS, ShouldEqual, tt.wantS) |
|
}) |
|
} |
|
} |
|
|
|
func TestService_Ping(t *testing.T) { |
|
type fields struct { |
|
arcDao *arcdao.Dao |
|
adtDao *adtdao.Dao |
|
} |
|
type args struct { |
|
c context.Context |
|
} |
|
tests := []struct { |
|
name string |
|
fields fields |
|
args args |
|
wantErr bool |
|
}{ |
|
// TODO: Add test cases. |
|
} |
|
for _, tt := range tests { |
|
t.Run(tt.name, func(t *testing.T) { |
|
s := &Service{ |
|
arcDao: tt.fields.arcDao, |
|
adtDao: tt.fields.adtDao, |
|
} |
|
if err := s.Ping(tt.args.c); (err != nil) != tt.wantErr { |
|
t.Errorf("Service.Ping() error = %v, wantErr %v", err, tt.wantErr) |
|
} |
|
}) |
|
} |
|
}
|
|
|