(self, input_data, expected_result)
| 79 | class TestMorph(unittest.TestCase): |
| 80 | @parameterized.expand(TESTS_SHAPE) |
| 81 | def test_shape(self, input_data, expected_result): |
| 82 | result1 = erode(input_data["mask"], input_data["filter_size"]) |
| 83 | assert_allclose(result1.shape, expected_result, type_test=False, device_test=False, atol=0.0) |
| 84 | |
| 85 | @parameterized.expand(TESTS_VALUE_T) |
| 86 | def test_value_t(self, input_data, expected_result): |
nothing calls this directly
no test coverage detected