| 13 | } |
| 14 | |
| 15 | CTestFileGenerator::CTestFileGenerator(const boost::filesystem::path& testexe, const boost::filesystem::path& outfile) |
| 16 | : m_Fp(outfile.string(), std::iostream::trunc), m_WorkDir(outfile.parent_path().string()), |
| 17 | m_TestExe(testexe.string()) |
| 18 | { |
| 19 | m_Fp.exceptions(std::iostream::badbit | std::iostream::failbit); |
| 20 | } |
| 21 | |
| 22 | void CTestFileGenerator::visit(const boost::unit_test::test_case& test) |
| 23 | { |