(self)
| 2767 | class TestMeshgrid: |
| 2768 | |
| 2769 | def test_simple(self): |
| 2770 | [X, Y] = meshgrid([1, 2, 3], [4, 5, 6, 7]) |
| 2771 | assert_array_equal(X, np.array([[1, 2, 3], |
| 2772 | [1, 2, 3], |
| 2773 | [1, 2, 3], |
| 2774 | [1, 2, 3]])) |
| 2775 | assert_array_equal(Y, np.array([[4, 4, 4], |
| 2776 | [5, 5, 5], |
| 2777 | [6, 6, 6], |
| 2778 | [7, 7, 7]])) |
| 2779 | |
| 2780 | def test_single_input(self): |
| 2781 | [X] = meshgrid([1, 2, 3, 4]) |
nothing calls this directly
no test coverage detected