From f05b28ce7584f650d56b95515498686b4dc6031a Mon Sep 17 00:00:00 2001 From: p-chin Date: Mon, 14 Oct 2013 17:54:35 +0900 Subject: [PATCH] resolve CS0507 erorr on Unity3D --- SharpUnit/Src/Unity3D_TestReporter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SharpUnit/Src/Unity3D_TestReporter.cs b/SharpUnit/Src/Unity3D_TestReporter.cs index 69085d6..222b5fb 100755 --- a/SharpUnit/Src/Unity3D_TestReporter.cs +++ b/SharpUnit/Src/Unity3D_TestReporter.cs @@ -14,7 +14,7 @@ public class Unity3D_TestReporter : TestReporter /** * Log unit test summary to the console. */ - public override void LogSummary() + protected override void LogSummary() { // If the results invalid if (null == Result) @@ -34,7 +34,7 @@ public override void LogSummary() * * @param Exception error, the error to log. */ - public override void LogFailure(Exception error) + protected override void LogFailure(Exception error) { // If the error is valid if (null != error)