Lines Matching defs:kTestsuite
4248 const std::string kTestsuite = "testcase";
4255 OutputXmlAttribute(stream, kTestsuite, "name", test_info.name());
4258 OutputXmlAttribute(stream, kTestsuite, "value_param",
4262 OutputXmlAttribute(stream, kTestsuite, "type_param",
4266 OutputXmlAttribute(stream, kTestsuite, "file", test_info.file());
4267 OutputXmlAttribute(stream, kTestsuite, "line",
4274 OutputXmlAttribute(stream, kTestsuite, "status",
4276 OutputXmlAttribute(stream, kTestsuite, "result",
4280 OutputXmlAttribute(stream, kTestsuite, "time",
4283 stream, kTestsuite, "timestamp",
4285 OutputXmlAttribute(stream, kTestsuite, "classname", test_suite_name);
4339 const std::string kTestsuite = "testsuite";
4340 *stream << " <" << kTestsuite;
4341 OutputXmlAttribute(stream, kTestsuite, "name", test_suite.name());
4342 OutputXmlAttribute(stream, kTestsuite, "tests",
4345 OutputXmlAttribute(stream, kTestsuite, "failures",
4348 stream, kTestsuite, "disabled",
4350 OutputXmlAttribute(stream, kTestsuite, "skipped",
4353 OutputXmlAttribute(stream, kTestsuite, "errors", "0");
4355 OutputXmlAttribute(stream, kTestsuite, "time",
4358 stream, kTestsuite, "timestamp",
4367 *stream << " </" << kTestsuite << ">\n";
4702 const std::string kTestsuite = "testcase";
4706 OutputJsonKey(stream, kTestsuite, "name", test_info.name(), kIndent);
4709 OutputJsonKey(stream, kTestsuite, "value_param", test_info.value_param(),
4713 OutputJsonKey(stream, kTestsuite, "type_param", test_info.type_param(),
4717 OutputJsonKey(stream, kTestsuite, "file", test_info.file(), kIndent);
4718 OutputJsonKey(stream, kTestsuite, "line", test_info.line(), kIndent, false);
4726 OutputJsonKey(stream, kTestsuite, "status",
4728 OutputJsonKey(stream, kTestsuite, "result",
4733 OutputJsonKey(stream, kTestsuite, "timestamp",
4736 OutputJsonKey(stream, kTestsuite, "time",
4738 OutputJsonKey(stream, kTestsuite, "classname", test_suite_name, kIndent,
4802 const std::string kTestsuite = "testsuite";
4806 OutputJsonKey(stream, kTestsuite, "name", test_suite.name(), kIndent);
4807 OutputJsonKey(stream, kTestsuite, "tests", test_suite.reportable_test_count(),
4810 OutputJsonKey(stream, kTestsuite, "failures",
4812 OutputJsonKey(stream, kTestsuite, "disabled",
4814 OutputJsonKey(stream, kTestsuite, "errors", 0, kIndent);
4816 stream, kTestsuite, "timestamp",
4819 OutputJsonKey(stream, kTestsuite, "time",
4826 *stream << kIndent << "\"" << kTestsuite << "\": [\n";