Files
cpp-course/modules/01_fundamentals/test/hello_world_test.cpp
T

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);
}