(b *testing.B)
| 3122 | } |
| 3123 | |
| 3124 | func BenchmarkNotNil(b *testing.B) { |
| 3125 | for i := 0; i < b.N; i++ { |
| 3126 | NotNil(b, b) |
| 3127 | } |
| 3128 | } |
| 3129 | |
| 3130 | func ExampleComparisonAssertionFunc() { |
| 3131 | t := &testing.T{} // provided by test |
nothing calls this directly
no test coverage detected
searching dependent graphs…