| 48 | static ScriptTest* s_LogListenerContext = 0; |
| 49 | |
| 50 | static void LogCallback(LogSeverity severity, const char* domain, const char* formatted_string) |
| 51 | { |
| 52 | ScriptTest* i = (ScriptTest*)s_LogListenerContext; |
| 53 | i->AppendToLog(formatted_string); |
| 54 | } |
| 55 | |
| 56 | void ScriptTest::SetUp() |
| 57 | { |
nothing calls this directly
no test coverage detected