diff --git a/modules/beast_core/diagnostic/beast_Debug.cpp b/modules/beast_core/diagnostic/beast_Debug.cpp index 488e030d3..3580b0454 100644 --- a/modules/beast_core/diagnostic/beast_Debug.cpp +++ b/modules/beast_core/diagnostic/beast_Debug.cpp @@ -293,3 +293,22 @@ String commandLineToString (const String& commandLine) } } + +//------------------------------------------------------------------------------ + +class DebugTests : public UnitTest +{ +public: + DebugTests () : UnitTest ("Debug", "beast", runManual) + { + } + + void runTest () + { + beginTestCase ("bassert"); + bassertfalse; + fail (); + } +}; + +static DebugTests debugTests;