(self)
| 235 | self._assert_arithmetic_cases(test_cases, lambda x, y: x + y) |
| 236 | |
| 237 | def test_vector_subtraction(self): |
| 238 | |
| 239 | test_cases = [ |
| 240 | (((0, 0), (1, 1)), (-1, -1)), |
| 241 | (((10.625, 0.125), (10, 0)), (0.625, 0.125)), |
| 242 | ] |
| 243 | |
| 244 | self._assert_arithmetic_cases(test_cases, lambda x, y: x - y) |
| 245 | |
| 246 | def test_vector_multiply(self): |
| 247 |
nothing calls this directly
no test coverage detected