| 183 | } |
| 184 | |
| 185 | void JUnitTestOutput::writeTestSuiteSummary() |
| 186 | { |
| 187 | SimpleString |
| 188 | buf = |
| 189 | StringFromFormat( |
| 190 | "<testsuite errors=\"0\" failures=\"%d\" hostname=\"localhost\" name=\"%s\" tests=\"%d\" time=\"%d.%03d\" timestamp=\"%s\">\n", |
| 191 | (int)impl_->results_.failureCount_, |
| 192 | impl_->results_.group_.asCharString(), |
| 193 | (int) impl_->results_.testCount_, |
| 194 | (int) (impl_->results_.groupExecTime_ / 1000), (int) (impl_->results_.groupExecTime_ % 1000), |
| 195 | GetPlatformSpecificTimeString()); |
| 196 | writeToFile(buf.asCharString()); |
| 197 | } |
| 198 | |
| 199 | void JUnitTestOutput::writeProperties() |
| 200 | { |
nothing calls this directly
no test coverage detected