test.cpp 192 B

12345678910111213
  1. #include <string>
  2. #include "gtest/gtest.h"
  3. using namespace std;
  4. TEST(HelloWorldTest, SomeTest) {
  5. EXPECT_TRUE( 2 == 1+1 );
  6. }
  7. TEST(HelloWorldTest, SomeTest2) {
  8. EXPECT_TRUE( 2 == 1+1 );
  9. }