lsp_test_blobfinder.hh
Go to the documentation of this file.
00001 #ifndef _LSP_BLOBFINDER_TEST_H_ 00002 #define _LSP_BLOBFINDER_TEST_H_ 00003 00004 #include <cppunit/extensions/HelperMacros.h> 00005 #include <libplayerc/playerc.h> 00006 00007 #include "lsp_test_proxy.hh" 00008 00009 namespace lspTest { 00010 class Blobfinder : public Proxy 00011 { 00012 CPPUNIT_TEST_SUITE( Blobfinder ); 00013 CPPUNIT_TEST( testData ); 00014 CPPUNIT_TEST_SUITE_END(); 00015 00016 protected: 00017 playerc_blobfinder_t* blobProxy; 00018 00019 void testConfig(); 00020 void testGeom(); 00021 void testData(); 00022 00023 public: 00024 void setUp(); 00025 void tearDown(); 00026 }; 00027 }; 00028 00029 CPPUNIT_TEST_SUITE_REGISTRATION( lspTest::Blobfinder ); 00030 00031 #endif