(testCase, first, second)
| 26 | testCase.assertEqual(first.pivotBlack, second.pivotBlack) |
| 27 | |
| 28 | def assertEqualRGBMSW(testCase, first, second): |
| 29 | testCase.assertEqual(first.red, second.red) |
| 30 | testCase.assertEqual(first.green, second.green) |
| 31 | testCase.assertEqual(first.blue, second.blue) |
| 32 | testCase.assertEqual(first.master, second.master) |
| 33 | testCase.assertEqual(first.start, second.start) |
| 34 | testCase.assertEqual(first.width, second.width) |
| 35 | |
| 36 | def assertEqualTone(testCase, first, second): |
| 37 | assertEqualRGBMSW(testCase, first.blacks, second.blacks) |
no outgoing calls
no test coverage detected