| 21 | } |
| 22 | |
| 23 | void TestSequence::ReportError(const char* error) { |
| 24 | test_name_ = typeid(*this).name(); |
| 25 | test_name_ = test_name_.substr(test_name_.find("::") + 2, -1); |
| 26 | |
| 27 | errors_.push_back(error); |
| 28 | } |
| 29 | |
| 30 | void TestSequence::KillAllUnits() { |
| 31 | const Units& units = agent_->Observation()->GetUnits(); |
nothing calls this directly
no outgoing calls
no test coverage detected