(testCase, first, second)
| 34 | testCase.assertEqual(first.width, second.width) |
| 35 | |
| 36 | def assertEqualTone(testCase, first, second): |
| 37 | assertEqualRGBMSW(testCase, first.blacks, second.blacks) |
| 38 | assertEqualRGBMSW(testCase, first.whites, second.whites) |
| 39 | assertEqualRGBMSW(testCase, first.shadows, second.shadows) |
| 40 | assertEqualRGBMSW(testCase, first.highlights, second.highlights) |
| 41 | assertEqualRGBMSW(testCase, first.midtones, second.midtones) |
| 42 | testCase.assertEqual(first.scontrast, second.scontrast) |
| 43 | |
| 44 | def assertEqualControlPoint(testCase, first, second): |
| 45 | testCase.assertEqual(first.x, second.x) |
no test coverage detected