owlps/owlps-positioner/tests/fbcm_test.hh

25 lines
548 B
C++

#include <cxxtest/TestSuite.h>
#include "fbcm.hh"
class FBCM_test: public CxxTest::TestSuite
{
public:
void test_select_point(void)
{
TrilaterationAlgorithm *algo = new FBCM() ;
/*
* 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, hm, let's say it's OK for now…
*/
delete algo ;
}
} ;