test for method change_component()
(self)
| 117 | assert str(x) == str(y) |
| 118 | |
| 119 | def test_change_component(self) -> None: |
| 120 | """ |
| 121 | test for method change_component() |
| 122 | """ |
| 123 | x = Vector([1, 0, 0]) |
| 124 | x.change_component(0, 0) |
| 125 | x.change_component(1, 1) |
| 126 | assert str(x) == "(0,1,0)" |
| 127 | |
| 128 | def test_str_matrix(self) -> None: |
| 129 | """ |
nothing calls this directly
no test coverage detected