#include "hello_world.hpp" #include TEST(HelloWorld, GreetsByName) { EXPECT_STREQ(fundamentals::greet("Ada"), "Hello, Ada!"); EXPECT_STREQ(fundamentals::greet("Bjarne"), "Hello, Bjarne!"); } TEST(HelloWorld, ExitSuccessIsZero) { EXPECT_EQ(fundamentals::program_exit_success(), 0); }