Test input that should raise an exception.
(locations)
| 112 | ], |
| 113 | ) |
| 114 | def test_validate_locations_exceptions(locations): |
| 115 | """Test input that should raise an exception.""" |
| 116 | with pytest.raises((TypeError, ValueError)): |
| 117 | validate_locations(locations) |
| 118 | |
| 119 | |
| 120 | def test_if_pandas_df_convert_to_numpy(): |
nothing calls this directly
no test coverage detected