test for the global function unitBasisVector(...)
(self)
| 86 | self.assertTrue(zeroVector(10).__str__().count("0") == 10) |
| 87 | |
| 88 | def test_unitBasisVector(self): |
| 89 | """ |
| 90 | test for the global function unitBasisVector(...) |
| 91 | """ |
| 92 | self.assertEqual(unitBasisVector(3, 1).__str__(), "(0,1,0)") |
| 93 | |
| 94 | def test_axpy(self): |
| 95 | """ |
nothing calls this directly
no test coverage detected