TestTwo is another example of a test.
()
| 227 | |
| 228 | // TestTwo is another example of a test. |
| 229 | func (suite *SuiteTester) TestTwo() { |
| 230 | beforeCount := suite.TestTwoRunCount |
| 231 | suite.TestTwoRunCount++ |
| 232 | assert.NotEqual(suite.T(), suite.TestTwoRunCount, beforeCount) |
| 233 | suite.NotEqual(suite.TestTwoRunCount, beforeCount) |
| 234 | } |
| 235 | |
| 236 | func (suite *SuiteTester) TestSkip() { |
| 237 | suite.T().Skip() |