libcryfs/test/cpp-utils/assert/assert_release_test.cpp

32 lines
687 B
C++
Raw Normal View History

#include <gtest/gtest.h>
#include <gmock/gmock.h>
2015-07-22 13:38:36 +02:00
//Include the ASSERT macro for a release build
2016-07-10 22:15:48 +02:00
#ifndef NDEBUG
2015-07-22 13:38:36 +02:00
#define NDEBUG
2016-07-10 22:15:48 +02:00
#endif
2016-02-11 12:53:42 +01:00
#include "cpp-utils/assert/assert.h"
2015-07-22 13:38:36 +02:00
using testing::MatchesRegex;
TEST(AssertTest_ReleaseBuild, DoesntThrowIfTrue) {
ASSERT(true, "bla");
}
TEST(AssertTest_ReleaseBuild, ThrowsIfFalse) {
EXPECT_THROW(
ASSERT(false, "bla"),
cpputils::AssertFailed
);
}
TEST(AssertTest_ReleaseBuild, AssertMessage) {
try {
ASSERT(2==5, "my message");
FAIL();
} catch (const cpputils::AssertFailed &e) {
EXPECT_THAT(e.what(), MatchesRegex(
2016-07-22 14:10:21 +02:00
"Assertion \\[2==5\\] failed in .*/assert_release_test.cpp:25: my message.*"
2015-07-22 13:38:36 +02:00
));
}
}