| 276 | } |
| 277 | |
| 278 | type SuiteSkipTester struct { |
| 279 | // Include our basic suite logic. |
| 280 | Suite |
| 281 | |
| 282 | // Keep counts of how many times each method is run. |
| 283 | SetupSuiteRunCount int |
| 284 | TearDownSuiteRunCount int |
| 285 | } |
| 286 | |
| 287 | func (suite *SuiteSkipTester) SetupSuite() { |
| 288 | suite.SetupSuiteRunCount++ |
nothing calls this directly
no outgoing calls
no test coverage detected