mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
13 lines
302 B
C#
13 lines
302 B
C#
|
using System.Diagnostics;
|
|||
|
|
|||
|
namespace LibHac.Tests
|
|||
|
{
|
|||
|
public class DebugAssertHandler : DefaultTraceListener
|
|||
|
{
|
|||
|
public override void Fail(string message, string detailMessage)
|
|||
|
{
|
|||
|
// throw new System.NotImplementedException(message + detailMessage);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|