()
| 7 | |
| 8 | |
| 9 | def test_init(): |
| 10 | pop = Population.empty(100) |
| 11 | assert len(pop) == 100 |
| 12 | |
| 13 | pop = Population([Individual() for _ in range(50)]) |
| 14 | assert len(pop) == 50 |
| 15 | |
| 16 | |
| 17 | def test_copy(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…