(testCase, first, second)
| 5 | import PyOpenColorIO as OCIO |
| 6 | |
| 7 | def assertEqualRGBM(testCase, first, second): |
| 8 | testCase.assertEqual(first.red, second.red) |
| 9 | testCase.assertEqual(first.green, second.green) |
| 10 | testCase.assertEqual(first.blue, second.blue) |
| 11 | testCase.assertEqual(first.master, second.master) |
| 12 | |
| 13 | def assertEqualPrimary(testCase, first, second): |
| 14 | assertEqualRGBM(testCase, first.brightness, second.brightness) |
no outgoing calls
no test coverage detected