test for the global function zeroVector(...)
(self)
| 80 | self.assertEqual((a * b), 0) |
| 81 | |
| 82 | def test_zeroVector(self): |
| 83 | """ |
| 84 | test for the global function zeroVector(...) |
| 85 | """ |
| 86 | self.assertTrue(zeroVector(10).__str__().count("0") == 10) |
| 87 | |
| 88 | def test_unitBasisVector(self): |
| 89 | """ |
nothing calls this directly
no test coverage detected