| 32 | runTestCases(); |
| 33 | } |
| 34 | void TestModule::onUnitCreate(Unit unit) |
| 35 | { |
| 36 | if (unit!=NULL) |
| 37 | Broodwar->printf("A %s [%p] has been created",unit->getType().c_str(),unit); |
| 38 | else |
| 39 | Broodwar->printf("A %p has been created",unit); |
| 40 | } |
| 41 | void TestModule::onUnitDestroy(Unit unit) |
| 42 | { |
| 43 | if (unit!=NULL) |