19 lines
No EOL
283 B
C++
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();
|
|
} |