| 288 | def test_evolve_algorithm_basic(self): |
| 289 | """Test evolve_algorithm with simple class""" |
| 290 | class SimpleAlgorithm: |
| 291 | def process(self, data): |
| 292 | return sum(data) |
| 293 | |
| 294 | def benchmark(instance): |
| 295 | result = instance.process([1, 2, 3]) |
nothing calls this directly
no outgoing calls
no test coverage detected