12 lines
121 B
C++
12 lines
121 B
C++
#include <gtest/gtest.h>
|
|
|
|
TEST(GoogleTest, Foo)
|
|
{
|
|
ASSERT_TRUE(true);
|
|
}
|
|
|
|
TEST(GoogleTest, Bar)
|
|
{
|
|
ASSERT_TRUE(true);
|
|
}
|