cppcheck/test/cfg/googletest.cpp

33 lines
790 B
C++

// Test library configuration for googletest.cfg
//
// Usage:
// $ cppcheck --check-library --library=googletest --enable=information --error-exitcode=1 --inline-suppr --suppress=missingIncludeSystem test/cfg/googletest.cpp
// =>
// No warnings about bad library configuration, unmatched suppressions, etc. exitcode=0
//
#include <gmock/gmock-generated-matchers.h>
#include <gtest/gtest.h>
// #9397 syntaxError when MATCHER_P is not known
namespace ExampleNamespace {
constexpr long long TOLERANCE = 10;
MATCHER_P(ExampleMatcherTest, expected, "")
{
return ((arg <= (expected + TOLERANCE)) && (arg >= (expected - TOLERANCE)));
}
}
TEST(ASSERT, ASSERT)
{
int *a = (int*)calloc(10,sizeof(int));
ASSERT_TRUE(a != nullptr);
a[0] = 10;
free(a);
}