(self)
| 2370 | assert names == ["x__0", "x__1", "x__2"] |
| 2371 | |
| 2372 | def test_vector_zero(self): |
| 2373 | assert IntVector("x", 0) == [] |
| 2374 | assert BoolVector("b", 0) == [] |
| 2375 | assert RealVector("r", 0) == [] |
| 2376 | |
| 2377 | def test_vector_sum(self): |
| 2378 | xs = IntVector("x", 3) |
nothing calls this directly
no test coverage detected