(self)
| 2521 | [7, 7, 7]])) |
| 2522 | |
| 2523 | def test_single_input(self): |
| 2524 | [X] = meshgrid([1, 2, 3, 4]) |
| 2525 | assert_array_equal(X, np.array([1, 2, 3, 4])) |
| 2526 | |
| 2527 | def test_no_input(self): |
| 2528 | args = [] |
nothing calls this directly
no test coverage detected