| 200 | } |
| 201 | |
| 202 | void TestTool::updateTestCase() |
| 203 | { |
| 204 | std::ofstream file(m_path.string(), std::ios::trunc); |
| 205 | m_test->printSource(file); |
| 206 | m_test->printUpdatedSettings(file); |
| 207 | file << "// ----" << std::endl; |
| 208 | m_test->printUpdatedExpectations(file, "// "); |
| 209 | } |
| 210 | |
| 211 | TestTool::Request TestTool::handleResponse(bool _exception) |
| 212 | { |
nothing calls this directly
no test coverage detected