lsp_test_position2d.hh
Go to the documentation of this file.
1#ifndef _LSP_POSITION2D_TEST_H_
2#define _LSP_POSITION2D_TEST_H_
3
4#include <cppunit/extensions/HelperMacros.h>
5#include <libplayerc/playerc.h>
6
7#include "lsp_test_proxy.hh"
8
9namespace lspTest {
10class Position2D : public Proxy {
11 CPPUNIT_TEST_SUB_SUITE(Position2D, Proxy);
12 CPPUNIT_TEST(testGeom);
13 CPPUNIT_TEST(testData);
14 CPPUNIT_TEST(testMove);
15 CPPUNIT_TEST_SUITE_END();
16
17protected:
18 playerc_position2d_t *posProxy;
19
20 void testGeom();
21 void testData();
22 void testMove();
23
24public:
25 void setUp();
26 void tearDown();
27};
28};
29
31
32#endif
Definition: lsp_test_position2d.hh:10
void testMove()
Definition: lsp_test_position2d.cc:54
void testGeom()
Definition: lsp_test_position2d.cc:23
playerc_position2d_t * posProxy
Definition: lsp_test_position2d.hh:18
void setUp()
Definition: lsp_test_position2d.cc:5
void tearDown()
Definition: lsp_test_position2d.cc:16
void testData()
Definition: lsp_test_position2d.cc:35
Definition: lsp_test_proxy.hh:8
CPPUNIT_TEST_SUITE_REGISTRATION(lspTest::Position2D)
Definition: lsp_test_blobfinder.hh:9