view c/test_feature.cpp @ 200:0a27fa343257

added one test and cleaned the first and last instant mess
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 02 Mar 2012 19:32:54 -0500
parents aeab0b88c9b6
children f7ddfc4aeb1e
line wrap: on
line source

#define BOOST_TEST_MODULE traffic intelligence

#include <boost/test/unit_test.hpp>
#include <boost/test/floating_point_comparison.hpp>

using namespace std;

BOOST_AUTO_TEST_SUITE(test_feature)

BOOST_AUTO_TEST_CASE(feature_stationary) {
  int i=5;
  BOOST_CHECK_EQUAL(i, 5);
}

BOOST_AUTO_TEST_SUITE_END()