(zdir, expected)
| 22 | (np.array([4, 5, 6]), (4, 5, 6)), |
| 23 | ]) |
| 24 | def test_get_dir_vector(zdir, expected): |
| 25 | res = get_dir_vector(zdir) |
| 26 | assert isinstance(res, np.ndarray) |
| 27 | nptest.assert_array_equal(res, expected) |
| 28 | |
| 29 | |
| 30 | def test_scatter_3d_projection_conservation(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…