test for global function zero_vector()
(self)
| 89 | assert a * b == 0 |
| 90 | |
| 91 | def test_zero_vector(self) -> None: |
| 92 | """ |
| 93 | test for global function zero_vector() |
| 94 | """ |
| 95 | assert str(zero_vector(10)).count("0") == 10 |
| 96 | |
| 97 | def test_unit_basis_vector(self) -> None: |
| 98 | """ |
nothing calls this directly
no test coverage detected