diff options
Diffstat (limited to '3rdParty/CppUnit/src/Asserter.cpp')
| -rw-r--r-- | 3rdParty/CppUnit/src/Asserter.cpp | 101 | 
1 files changed, 101 insertions, 0 deletions
| diff --git a/3rdParty/CppUnit/src/Asserter.cpp b/3rdParty/CppUnit/src/Asserter.cpp new file mode 100644 index 0000000..a9cf95c --- /dev/null +++ b/3rdParty/CppUnit/src/Asserter.cpp @@ -0,0 +1,101 @@ +#include <cppunit/Asserter.h> +#include <cppunit/Exception.h> +#include <cppunit/Message.h> + + +CPPUNIT_NS_BEGIN + + +void  +Asserter::fail( std::string message,  +                const SourceLine &sourceLine ) +{ +  fail( Message( "assertion failed", message ), sourceLine ); +} + + +void  +Asserter::fail( const Message &message,  +                const SourceLine &sourceLine ) +{ +  throw Exception( message, sourceLine ); +} + + +void  +Asserter::failIf( bool shouldFail,  +                  const Message &message,  +                  const SourceLine &sourceLine ) +{ +  if ( shouldFail ) +    fail( message, sourceLine ); +} + + +void  +Asserter::failIf( bool shouldFail,  +                  std::string message,  +                  const SourceLine &sourceLine ) +{ +  failIf( shouldFail, Message( "assertion failed", message ), sourceLine ); +} + + +std::string  +Asserter::makeExpected( const std::string &expectedValue ) +{ +  return "Expected: " + expectedValue; +} + + +std::string  +Asserter::makeActual( const std::string &actualValue ) +{ +  return "Actual  : " + actualValue; +} + + +Message  +Asserter::makeNotEqualMessage( const std::string &expectedValue, +                               const std::string &actualValue, +                               const AdditionalMessage &additionalMessage, +                               const std::string &shortDescription ) +{ +  Message message( shortDescription, +                   makeExpected( expectedValue ), +                   makeActual( actualValue ) ); +  message.addDetail( additionalMessage ); + +  return message; +} + + +void  +Asserter::failNotEqual( std::string expected,  +                        std::string actual,  +                        const SourceLine &sourceLine, +                        const AdditionalMessage &additionalMessage, +                        std::string shortDescription ) +{ +  fail( makeNotEqualMessage( expected, +                             actual, +                             additionalMessage, +                             shortDescription ),  +        sourceLine ); +} + + +void  +Asserter::failNotEqualIf( bool shouldFail, +                          std::string expected,  +                          std::string actual,  +                          const SourceLine &sourceLine, +                          const AdditionalMessage &additionalMessage, +                          std::string shortDescription ) +{ +  if ( shouldFail ) +    failNotEqual( expected, actual, sourceLine, additionalMessage, shortDescription ); +} + + +CPPUNIT_NS_END | 
 Swift
 Swift