mirror of
https://github.com/netchx/netch.git
synced 2026-03-16 17:53:17 +08:00
14 lines
178 B
C#
14 lines
178 B
C#
using Netch;
|
|
|
|
namespace UnitTest
|
|
{
|
|
public class TestBase
|
|
{
|
|
protected TestBase()
|
|
{
|
|
#if DEBUG
|
|
Global.Testing = true;
|
|
#endif
|
|
}
|
|
}
|
|
} |