owlps/owlps-positioner/tests/input_test.hh
Matteo Cypriani d5e2c975ae Rename Positioning -> Positioner
To be consistent with the other modules, the positioning server must be
called OwlPS Positioner instead of Positioning, and the executable
owlps-positionerd (even if the daemon mode is not implemented yet).
That's a big commit for a tiny change.
2012-02-06 17:48:43 +01:00

17 lines
280 B
C++

#include <cxxtest/TestSuite.h>
#include "input.hh"
#include "posexcept.hh"
class Input_test: public CxxTest::TestSuite
{
public:
void test_constructor(void)
{
// TODO: test with a mock Configuration?
TS_ASSERT_THROWS(Input input1, missing_configuration) ;
}
} ;