lsp_test_proxy.hh
Go to the documentation of this file.
1 #ifndef _LSP_PROXY_TEST_H_
2 #define _LSP_PROXY_TEST_H_
3 
4 #include <cppunit/extensions/HelperMacros.h>
5 #include <libplayerc/playerc.h>
6 
7 namespace lspTest {
8  class Proxy : public CppUnit::TestFixture
9  {
10  CPPUNIT_TEST_SUITE( Proxy );
11  CPPUNIT_TEST_SUITE_END_ABSTRACT();
12 
13  protected:
14  playerc_client_t* client;
15 
16  void connect();
17  void disconnect();
18 
19  static const double Delta;
20  };
21 };
22 
23 #endif
Definition: lsp_test_proxy.hh:8
void connect()
Definition: lsp_test_proxy.cc:7
Definition: lsp_test_blobfinder.hh:9
void disconnect()
Definition: lsp_test_proxy.cc:14
static const double Delta
Definition: lsp_test_proxy.hh:19
playerc_client_t * client
Definition: lsp_test_proxy.hh:14