| 105 | } |
| 106 | |
| 107 | char* ScriptTest::GetLog() |
| 108 | { |
| 109 | FinalizeLogs(); // Waits for the log thread to close |
| 110 | |
| 111 | m_Log.SetCapacity(m_Log.Size() + 1); |
| 112 | m_Log.Push('\0'); |
| 113 | return m_Log.Begin(); |
| 114 | } |
| 115 | |
| 116 | void ScriptTest::AppendToLog(const char* log) |
| 117 | { |
nothing calls this directly
no test coverage detected