(self)
| 19 | |
| 20 | class TestIdentity(NumpyImageTestCase2D): |
| 21 | def test_identity(self): |
| 22 | for p in TEST_NDARRAYS: |
| 23 | img = p(self.imt) |
| 24 | identity = Identity() |
| 25 | assert_allclose(img, identity(img)) |
| 26 | |
| 27 | |
| 28 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected