You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
209 B

  1. #include <gtest/gtest.h>
  2. #include <libhelloworld.h>
  3. using namespace ::testing;
  4. using namespace ::libhelloworld;
  5. TEST(libhelloworld, getHelloWorld)
  6. {
  7. EXPECT_EQ(Dummy::getHelloWorld(), "Hello World!");
  8. }