| 67 | } |
| 68 | |
| 69 | const FunctionNode *Unittest::getTestBody() const { |
| 70 | for (const auto &TestFunc : TestSequence) { |
| 71 | if (TestFunc.isTestBody()) |
| 72 | return &TestFunc; |
| 73 | } |
| 74 | return nullptr; |
| 75 | } |
| 76 | |
| 77 | std::string Unittest::getType() const { return Type; } |
| 78 |
no test coverage detected