common_test.go 427 B

123456789101112131415161718192021
  1. package service
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestServiceconvertModel(t *testing.T) {
  7. convey.Convey("convertModel", t, func() {
  8. res := s.convertModel(nil)
  9. convey.So(res, convey.ShouldNotBeNil)
  10. })
  11. }
  12. func TestServiceconvertExtraModel(t *testing.T) {
  13. convey.Convey("convertExtraModel", t, func() {
  14. res := s.convertExtraModel(nil)
  15. convey.So(res, convey.ShouldNotBeNil)
  16. })
  17. }