MCPcopy Create free account
hub / github.com/cpputest/cpputest / printCurrentTestStarted

Method printCurrentTestStarted

src/CppUTest/TeamCityTestOutput.cpp:12–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10}
11
12void TeamCityTestOutput::printCurrentTestStarted(const UtestShell& test)
13{
14 print("##teamcity[testStarted name='");
15 printEscaped(test.getName().asCharString());
16 print("']\n");
17 if (!test.willRun()) {
18 print("##teamcity[testIgnored name='");
19 printEscaped(test.getName().asCharString());
20 print("']\n");
21 }
22 currtest_ = &test;
23}
24
25void TeamCityTestOutput::printCurrentTestEnded(const TestResult& res)
26{

Callers

nothing calls this directly

Calls 3

asCharStringMethod · 0.80
willRunMethod · 0.80
getNameMethod · 0.45

Tested by

no test coverage detected