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 
9 namespace lspTest {
10 class 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 
17 protected:
18  playerc_position2d_t *posProxy;
19 
20  void testGeom();
21  void testData();
22  void testMove();
23 
24 public:
25  void setUp();
26  void tearDown();
27 };
28 };
29 
31 
32 #endif
void testMove()
Definition: lsp_test_position2d.cc:54
Definition: lsp_test_proxy.hh:8
CPPUNIT_TEST_SUITE_REGISTRATION(lspTest::Position2D)
void setUp()
Definition: lsp_test_position2d.cc:5
void testGeom()
Definition: lsp_test_position2d.cc:23
void tearDown()
Definition: lsp_test_position2d.cc:16
Definition: lsp_test_blobfinder.hh:9
void testData()
Definition: lsp_test_position2d.cc:35
playerc_position2d_t * posProxy
Definition: lsp_test_position2d.hh:18
Definition: lsp_test_position2d.hh:10