MCPcopy
hub / github.com/stretchr/testify / TestTwo

Method TestTwo

suite/suite_test.go:229–234  ·  view source on GitHub ↗

TestTwo is another example of a test.

()

Source from the content-addressed store, hash-verified

227
228// TestTwo is another example of a test.
229func (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
236func (suite *SuiteTester) TestSkip() {
237 suite.T().Skip()

Callers

nothing calls this directly

Calls 3

NotEqualFunction · 0.92
TMethod · 0.65
NotEqualMethod · 0.45

Tested by

no test coverage detected