Files
netch/UnitTest/TestBase.cs
2021-03-02 17:30:47 +08:00

14 lines
178 B
C#

using Netch;
namespace UnitTest
{
public class TestBase
{
protected TestBase()
{
#if DEBUG
Global.Testing = true;
#endif
}
}
}