owlps/owlps-positioner/tests/frbhmbasic_test.hh

25 lines
559 B
C++

#include <cxxtest/TestSuite.h>
#include "frbhmbasic.hh"
class FRBHMBasic_test: public CxxTest::TestSuite
{
public:
void test_compute(void)
{
PositioningAlgorithm *algo = new FRBHMBasic() ;
/*
* 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 ;
}
} ;