this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

boostxml: change element order

+2 -3
+2 -3
tests/boostxml.cpp
··· 18 18 void boostxml::addFailure(const std::string& path, int time, const std::string& error) 19 19 { 20 20 m_xml << "\t\t<TestCase name=\"" << extractName(path) << "\">\n"; 21 - m_xml << "\t\t\t<TestingTime>" << time << "</TestingTime>\n"; 22 21 m_xml << "\t\t\t<Error file=\"" << path << "\" line=\"0\">\n"; 23 - //m_xml << "<![CDATA[" << error << "]]>\n"; 24 - m_xml << error; 22 + m_xml << "<![CDATA[" << error << "]]>\n"; 25 23 m_xml << "\t\t\t</Error>\n"; 24 + m_xml << "\t\t\t<TestingTime>" << time << "</TestingTime>\n"; 26 25 m_xml << "\t\t</TestCase>\n"; 27 26 } 28 27