Newer
Older
//#define BOOST_TEST_MODULE master
#include <boost/test/included/unit_test.hpp>
#include <unicode/uclean.h>
#include "datadriven.h"
ilor
committed
#include "datarule.h"
BOOST_AUTO_TEST_CASE(test_test)
{
int a = 0;
BOOST_CHECK(a == 0);
}
//Auto cleanup of ICU with a static variable destructor.
//ICU can hold onto some memory resources until program exit,
//when the system is reclaiming them as usual. This is not a memory
//leak but makes tools like valgrind all excited that
//there is memory which is "still reachable but not freed."
//So, the below will perform icu cleanup before test program exit.
static struct ICU_cleaner
{
~ICU_cleaner()
{
u_cleanup();
}
} the_cleaner;
boost::unit_test::test_suite* init_unit_test_suite(int argc, char* argv[])
boost::unit_test::test_suite* ts1 = BOOST_TEST_SUITE("compare");
std::string compare_path;
for (int i = 0; i < argc; ++i) {
if (strcmp(argv[i], "--compare-tests-dir") == 0) {
++i;
if (i < argc) {
compare_path = argv[i];
}
}
}
init_data_suite(ts1, compare_path);
boost::unit_test::framework::master_test_suite().add(ts1);
ilor
committed
boost::unit_test::test_suite* ts2 = BOOST_TEST_SUITE("rule-compare");
init_data_rule_suite(ts2, compare_path);
boost::unit_test::framework::master_test_suite().add(ts2);