13 lines
314 B
C++
13 lines
314 B
C++
#include "hello_world.hpp"
|
|||
|
|
|
||
|
|
#include <gtest/gtest.h>
|
||
|
|
|
||
|
|
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);
|
||
|
|
}
|