(self)
| 2778 | [7, 7, 7]])) |
| 2779 | |
| 2780 | def test_single_input(self): |
| 2781 | [X] = meshgrid([1, 2, 3, 4]) |
| 2782 | assert_array_equal(X, np.array([1, 2, 3, 4])) |
| 2783 | |
| 2784 | def test_no_input(self): |
| 2785 | args = [] |
nothing calls this directly
no test coverage detected