diff options
Diffstat (limited to 'extras/hs-test/hst_suite.go')
-rw-r--r-- | extras/hs-test/hst_suite.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extras/hs-test/hst_suite.go b/extras/hs-test/hst_suite.go index 286536da305..9cd9aea5f24 100644 --- a/extras/hs-test/hst_suite.go +++ b/extras/hs-test/hst_suite.go @@ -105,6 +105,12 @@ func (s *HstSuite) assertNotContains(testString, contains interface{}, msgAndArg } } +func (s *HstSuite) assertNotEmpty(object interface{}, msgAndArgs ...interface{}) { + if !assert.NotEmpty(s.T(), object, msgAndArgs...) { + s.hstFail() + } +} + func (s *HstSuite) log(args ...any) { if IsVerbose() { s.T().Log(args...) |