Skip to content

Instantly share code, notes, and snippets.

@tosik
Created June 6, 2018 11:34
Show Gist options
  • Save tosik/b9865061ca7a078cc515eb97ae2a132b to your computer and use it in GitHub Desktop.
Save tosik/b9865061ca7a078cc515eb97ae2a132b to your computer and use it in GitHub Desktop.
Boost.Test 実験
$ cat main.cpp
#define BOOST_TEST_MAIN
#include <boost/test/included/unit_test.hpp>
BOOST_AUTO_TEST_CASE(test_foo_1)
{
BOOST_CHECK(true);
}
$ g++ main.cpp
$ ./a.out
Running 1 test case...
*** No errors detected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment