diff --git a/Assets/UnityTestTools/IntegrationTestsFramework/TestRunner/Editor/GuiHelper.cs b/Assets/UnityTestTools/IntegrationTestsFramework/TestRunner/Editor/GuiHelper.cs index a35327f3..808c27f4 100644 --- a/Assets/UnityTestTools/IntegrationTestsFramework/TestRunner/Editor/GuiHelper.cs +++ b/Assets/UnityTestTools/IntegrationTestsFramework/TestRunner/Editor/GuiHelper.cs @@ -13,19 +13,20 @@ namespace UnityTest { public static bool GetConsoleErrorPause() { - Assembly assembly = Assembly.GetAssembly(typeof(SceneView)); - Type type = assembly.GetType("UnityEditorInternal.LogEntries"); - PropertyInfo method = type.GetProperty("consoleFlags"); - var result = (int)method.GetValue(new object(), new object[] { }); - return (result & (1 << 2)) != 0; + return false; +// Assembly assembly = Assembly.GetAssembly(typeof(SceneView)); +// Type type = assembly.GetType("UnityEditorInternal.LogEntries"); +// PropertyInfo method = type.GetProperty("consoleFlags"); +// var result = (int)method.GetValue(new object(), new object[] { }); +// return (result & (1 << 2)) != 0; } public static void SetConsoleErrorPause(bool b) { - Assembly assembly = Assembly.GetAssembly(typeof(SceneView)); - Type type = assembly.GetType("UnityEditorInternal.LogEntries"); - MethodInfo method = type.GetMethod("SetConsoleFlag"); - method.Invoke(new object(), new object[] { 1 << 2, b }); +// Assembly assembly = Assembly.GetAssembly(typeof(SceneView)); +// Type type = assembly.GetType("UnityEditorInternal.LogEntries"); +// MethodInfo method = type.GetMethod("SetConsoleFlag"); +// method.Invoke(new object(), new object[] { 1 << 2, b }); } } }