Clang script (#3085)

This commit is contained in:
Zach H
2018-02-06 08:45:13 -05:00
committed by GitHub
parent fcfb2b12b7
commit 35159ef61a
24 changed files with 2098 additions and 2054 deletions

View File

@@ -1,16 +1,19 @@
#include "gtest/gtest.h"
namespace {
class FooTest : public ::testing::Test {
namespace
{
class FooTest : public ::testing::Test
{
};
};
TEST(DummyTest, Works) {
ASSERT_EQ(1, 1) << "One is not equal to one";
}
TEST(DummyTest, Works)
{
ASSERT_EQ(1, 1) << "One is not equal to one";
}
} // namespace
int main(int argc, char **argv) {
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}