| 330 | } |
| 331 | |
| 332 | inline GTestConvertor::~GTestConvertor() |
| 333 | { |
| 334 | delete reporter_; |
| 335 | |
| 336 | while (first_) { |
| 337 | GTestShell* next = first_->nextGTest(); |
| 338 | delete first_; |
| 339 | first_ = next; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | inline void GTestConvertor::addNewTestCaseForTestInfo(::testing::TestInfo* testinfo) |
| 344 | { |