(b *testing.B)
| 2512 | } |
| 2513 | |
| 2514 | func BenchmarkNotNil(b *testing.B) { |
| 2515 | for i := 0; i < b.N; i++ { |
| 2516 | NotNil(b, b) |
| 2517 | } |
| 2518 | } |
| 2519 | |
| 2520 | func ExampleComparisonAssertionFunc() { |
| 2521 | t := &testing.T{} // provided by test |
nothing calls this directly
no test coverage detected
searching dependent graphs…