| 39 | Broodwar->printf("A %p has been created",unit); |
| 40 | } |
| 41 | void TestModule::onUnitDestroy(Unit unit) |
| 42 | { |
| 43 | if (unit!=NULL) |
| 44 | Broodwar->printf("A %s [%p] has been destroyed",unit->getType().c_str(),unit); |
| 45 | else |
| 46 | Broodwar->printf("A %p has been destroyed",unit); |
| 47 | } |
| 48 | void TestModule::runTestCases() |
| 49 | { |
| 50 | if (currentTestCase==NULL && testCases.empty()==false && Broodwar->getFrameCount()>lastEndFrame+15) |