From ea72eb91592e90d15a9e03ffe61f02493135d843 Mon Sep 17 00:00:00 2001 From: Keynan Pratt Date: Wed, 29 Jan 2020 08:23:57 +1100 Subject: [PATCH] added Log/Skip methods as required by CI tests --- suite/suite.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/suite/suite.go b/suite/suite.go index bf811de..6e54781 100644 --- a/suite/suite.go +++ b/suite/suite.go @@ -21,6 +21,8 @@ type TestingT interface { Run(name string, f func(t *testing.T)) bool Errorf(format string, args ...interface{}) FailNow() + Log(args ...interface{}) + Skip(args ...interface{}) } // Suite is a basic testing suite with methods for storing and