SetupTestSuite has a SetupTest method, which will run before each test in the suite.
| 14 | // SetupTestSuite has a SetupTest method, which will run before each |
| 15 | // test in the suite. |
| 16 | type SetupTestSuite interface { |
| 17 | SetUpTest(context.Context, *testing.T) |
| 18 | } |
| 19 | |
| 20 | // TearDownAllSuite has a TearDownSuite method, which will run after |
| 21 | // all the tests in the suite have been run. |
no outgoing calls
no test coverage detected
searching dependent graphs…