Fuzz test for 1000 iterations
(t *testing.T, base interface{}, ff interface{})
| 399 | |
| 400 | // Fuzz test for 1000 iterations |
| 401 | func testTypeFuzz(t *testing.T, base interface{}, ff interface{}) { |
| 402 | testTypeFuzzN(t, base, ff, 1000) |
| 403 | } |
| 404 | |
| 405 | // Fuzz test for N iterations |
| 406 | func testTypeFuzzN(t *testing.T, base interface{}, ff interface{}, n int) { |
no test coverage detected
searching dependent graphs…