SetupAllSuite has a SetupSuite method, which will run before the tests in the suite are run.
| 13 | // SetupAllSuite has a SetupSuite method, which will run before the |
| 14 | // tests in the suite are run. |
| 15 | type SetupAllSuite interface { |
| 16 | SetupSuite() |
| 17 | } |
| 18 | |
| 19 | // SetupTestSuite has a SetupTest method, which will run before each |
| 20 | // test in the suite. |
no outgoing calls
no test coverage detected