()
| 64 | |
| 65 | |
| 66 | def test_heat_map_exception(): |
| 67 | with pytest.raises(ValueError): |
| 68 | HeatMap(np.array([[4, 5, 1], [3, 6, np.nan]])) |
| 69 | with pytest.raises(Exception): |
| 70 | HeatMap(np.array([3, 4, 5])) |
nothing calls this directly
no test coverage detected
searching dependent graphs…