owlps/owlps-positioning/tests/nss_test.hh

25 lines
536 B
C++

#include <cxxtest/TestSuite.h>
#include "nss.hh"
class NSS_test: public CxxTest::TestSuite
{
public:
void test_select_point(void)
{
CartographyAlgorithm *algo = new NSS() ;
/*
* 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 ;
}
} ;