9 lines
148 B
C++
Raw Normal View History

2016-03-13 13:35:51 +01:00
#include <gtest/gtest.h>
TEST(FindCMake, LinksAndRuns)
{
2018-01-26 17:06:56 +01:00
using namespace testing;
EXPECT_FALSE(GTEST_FLAG(list_tests));
2016-03-13 13:35:51 +01:00
ASSERT_TRUE(true);
}