test for method copy()
(self)
| 109 | assert str(axpy(2, x, y)) == "(3,4,7)" |
| 110 | |
| 111 | def test_copy(self) -> None: |
| 112 | """ |
| 113 | test for method copy() |
| 114 | """ |
| 115 | x = Vector([1, 0, 0, 0, 0, 0]) |
| 116 | y = x.copy() |
| 117 | assert str(x) == str(y) |
| 118 | |
| 119 | def test_change_component(self) -> None: |
| 120 | """ |