test for global function unit_basis_vector()
(self)
| 95 | assert str(zero_vector(10)).count("0") == 10 |
| 96 | |
| 97 | def test_unit_basis_vector(self) -> None: |
| 98 | """ |
| 99 | test for global function unit_basis_vector() |
| 100 | """ |
| 101 | assert str(unit_basis_vector(3, 1)) == "(0,1,0)" |
| 102 | |
| 103 | def test_axpy(self) -> None: |
| 104 | """ |
nothing calls this directly
no test coverage detected