mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
9 lines
179 B
C++
9 lines
179 B
C++
#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);
|
|
}
|