MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / TestStart

Method TestStart

Source/Debugger.cpp:112–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112void cDebugger::TestStart(const std::string& pName, const std::string& pGroup) {
113 ConsoleOpen();
114 if (g_Fodder->mParams->mAppVeyor) {
115 std::string Command = "appveyor AddTest";
116
117 Command += " -Name \"" + pName + "\"";
118 Command += " -Framework NUnit -FileName \"" + pGroup + "\"";
119 Command += " -Outcome Running";
120 system(Command.c_str());
121 }
122 else {
123 std::cout << "[Test] " << pName << ": starting\n";
124 }
125}
126
127void cDebugger::TestComplete(const std::string& pName, const std::string& pGroup, const std::string& pMessage, const size_t pTime, eTestState pTestState) {
128 ConsoleOpen();

Callers 2

RunTestsMethod · 0.80
StartMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected