Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SharpUnit/Src/Unity3D_TestReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down