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.
32 lines
793 B
32 lines
793 B
package service |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestSubject(t *testing.T) { |
|
c := context.Background() |
|
Convey("subject test", t, WithService(func(s *Service) { |
|
_, err := s.Subject(c, 1, 1) |
|
So(err, ShouldBeNil) |
|
})) |
|
Convey("subject test", t, WithService(func(s *Service) { |
|
_, err := s.AdminGetSubject(c, 1, 1) |
|
So(err, ShouldBeNil) |
|
})) |
|
Convey("subject test", t, WithService(func(s *Service) { |
|
err := s.AdminSubjectMid(c, 1, 1, 1, 1, "test") |
|
So(err, ShouldBeNil) |
|
})) |
|
Convey("subject test", t, WithService(func(s *Service) { |
|
err := s.AdminSubRegist(c, 1, 1, 1, 1, "test") |
|
So(err, ShouldBeNil) |
|
})) |
|
Convey("subject test", t, WithService(func(s *Service) { |
|
_, err := s.GetSubject(c, 1, 1) |
|
So(err, ShouldBeNil) |
|
})) |
|
}
|
|
|