Created
June 6, 2018 11:34
-
-
Save tosik/b9865061ca7a078cc515eb97ae2a132b to your computer and use it in GitHub Desktop.
Boost.Test 実験
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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