Added basic support for boost unit testing

This commit is contained in:
Jason Turner
2009-05-28 22:56:57 +00:00
parent 6d4ec204b0
commit 72ae292a43
7 changed files with 50 additions and 7 deletions

8
langkit/unittest.cpp Normal file
View File

@@ -0,0 +1,8 @@
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE boxedcpp_unittests
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE( add_operators )
{
BOOST_CHECK_EQUAL(2, 2);
}