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  {
12  CPPUNIT_TEST_SUB_SUITE( Position2D, Proxy );
13  CPPUNIT_TEST( testGeom );
14  CPPUNIT_TEST( testData );
15  CPPUNIT_TEST( testMove );
16  CPPUNIT_TEST_SUITE_END();
17 
18  protected:
19  playerc_position2d_t* posProxy;
20 
21  void testGeom();
22  void testData();
23  void testMove();
24 
25  public:
26  void setUp();
27  void tearDown();
28  };
29 };
30 
32 
33 #endif
void testMove()
Definition: lsp_test_position2d.cc:51
Definition: lsp_test_proxy.hh:8
CPPUNIT_TEST_SUITE_REGISTRATION(lspTest::Position2D)
void setUp()
Definition: lsp_test_position2d.cc:6
void testGeom()
Definition: lsp_test_position2d.cc:22
void tearDown()
Definition: lsp_test_position2d.cc:16
void testData()
Definition: lsp_test_position2d.cc:33
playerc_position2d_t * posProxy
Definition: lsp_test_position2d.hh:19
Definition: lsp_test_position2d.hh:10