servatrice/tests/dummy_test.cpp
2018-02-06 08:45:13 -05:00

19 lines
No EOL
283 B
C++

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