TearDownAllSuite has a TearDownSuite method, which will run after all the tests in the suite have been run.
| 25 | // TearDownAllSuite has a TearDownSuite method, which will run after |
| 26 | // all the tests in the suite have been run. |
| 27 | type TearDownAllSuite interface { |
| 28 | TearDownSuite() |
| 29 | } |
| 30 | |
| 31 | // TearDownTestSuite has a TearDownTest method, which will run after |
| 32 | // each test in the suite. |
no outgoing calls
no test coverage detected