mattercontrol/Testing/ReleaseTests.cs
2015-04-08 15:20:10 -07:00

14 lines
No EOL
240 B
C#

using System;
namespace MatterHackers.MatterControl.Testing
{
public static class ReleaseTests
{
public static void AssertDebugNotDefined()
{
#if DEBUG
throw new Exception("DEBUG is defined and should not be!");
#endif
}
}
}