owlps/owlps-positioning/tests/radar_test.hh

25 lines
542 B
C++

#include <cxxtest/TestSuite.h>
#include "radar.hh"
class RADAR_test: public CxxTest::TestSuite
{
public:
void test_select_point(void)
{
CartographyAlgorithm *algo = new RADAR() ;
/*
* TODO: implement the test.
* I was told to accelerate the development, so I leave unneeded unit
* tests for later. This tests *is* actually needed, but I did some
* result comparison between the old version of OWLPS Positioning and
* the current one, and it seems acceptably close.
*/
delete algo ;
}
} ;