| 695 | } |
| 696 | |
| 697 | void TestParser::openFile() { |
| 698 | if (access(path.c_str(), 0) != 0) { |
| 699 | throw TestException("Test file not exists [" + path + "]."); |
| 700 | } |
| 701 | fileStream.open(path); |
| 702 | } |
| 703 | |
| 704 | static std::vector<std::string> extractToken(std::string& line) { |
| 705 | std::vector<std::string> matches; |
no test coverage detected