exercism/cpp/hello-world/hello_world_test.cpp

9 lines
187 B
C++
Raw Normal View History

2017-08-12 14:01:07 +00:00
#include "hello_world.h"
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE(test_hello)
{
BOOST_REQUIRE_EQUAL("Hello, World!", hello_world::hello());
}