| 31 | const std::vector<APICall> &Unittest::getAPICalls() const { return APICalls; } |
| 32 | |
| 33 | std::set<std::string> Unittest::getEnvironmentClasses() const { |
| 34 | std::set<std::string> EnvClasses; |
| 35 | for (const auto &TestFunc : TestSequence) { |
| 36 | if (TestFunc.isEnvironment() && !TestFunc.getClassName().empty()) |
| 37 | EnvClasses.insert(TestFunc.getClassName()); |
| 38 | } |
| 39 | return EnvClasses; |
| 40 | } |
| 41 | |
| 42 | const std::vector<FunctionNode> &Unittest::getTestSequence() const { |
| 43 | return TestSequence; |
nothing calls this directly
no test coverage detected