TuttleOFX  1
main.cpp
Go to the documentation of this file.
00001 #include <iostream>
00002 #include <boost/test/unit_test.hpp>
00003 
00004 #define BOOST_TEST_MODULE "test function"
00005 
00006 using namespace boost::unit_test;
00007 
00008 BOOST_AUTO_TEST_CASE( test_01 )
00009 {
00010 
00011         BOOST_CHECK_EQUAL( 1.0, 1.0 );
00012 }