lsp_test_blobfinder.hh
Go to the documentation of this file.
1 #ifndef _LSP_BLOBFINDER_TEST_H_
2 #define _LSP_BLOBFINDER_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 Blobfinder : public Proxy {
11  CPPUNIT_TEST_SUITE(Blobfinder);
12  CPPUNIT_TEST(testData);
13  CPPUNIT_TEST_SUITE_END();
14 
15 protected:
16  playerc_blobfinder_t *blobProxy;
17 
18  void testConfig();
19  void testGeom();
20  void testData();
21 
22 public:
23  void setUp();
24  void tearDown();
25 };
26 };
27 
29 
30 #endif
Definition: lsp_test_blobfinder.hh:10
playerc_blobfinder_t * blobProxy
Definition: lsp_test_blobfinder.hh:16
void setUp()
Definition: lsp_test_blobfinder.cc:5
void tearDown()
Definition: lsp_test_blobfinder.cc:12
void testData()
Definition: lsp_test_blobfinder.cc:19
Definition: lsp_test_proxy.hh:8
CPPUNIT_TEST_SUITE_REGISTRATION(lspTest::Blobfinder)
Definition: lsp_test_blobfinder.hh:9