(self)
| 17 | class ColorSpaceTest(unittest.TestCase): |
| 18 | |
| 19 | def setUp(self): |
| 20 | self.colorspace = OCIO.ColorSpace() |
| 21 | self.log_tr = OCIO.LogTransform(10) |
| 22 | |
| 23 | def tearDown(self): |
| 24 | self.colorspace = None |
nothing calls this directly
no test coverage detected