| 110 | } |
| 111 | |
| 112 | void 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 | |
| 127 | void cDebugger::TestComplete(const std::string& pName, const std::string& pGroup, const std::string& pMessage, const size_t pTime, eTestState pTestState) { |
| 128 | ConsoleOpen(); |