| 325 | }; |
| 326 | |
| 327 | FeatureLayerTestBot::FeatureLayerTestBot() : |
| 328 | UnitTestBot() { |
| 329 | // Sequences. |
| 330 | for (int i = 0; i < 10; ++i) |
| 331 | Add(TestCoordinateSystemMinimap()); |
| 332 | for (int i = 0; i < 10; ++i) |
| 333 | Add(TestCoordinateSystemMap()); |
| 334 | for (int i = 0; i < 10; ++i) |
| 335 | Add(TestCameraMove()); |
| 336 | |
| 337 | Add(UnitCommandsFeatureLayer()); |
| 338 | } |
| 339 | |
| 340 | void FeatureLayerTestBot::OnTestsBegin() { |
| 341 | Debug()->DebugShowMap(); |
nothing calls this directly
no test coverage detected