14 lines
No EOL
240 B
C#
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
|
|
}
|
|
}
|
|
} |