Go to the documentation of this file.00001 #ifndef _LSP_PROXY_TEST_H_
00002 #define _LSP_PROXY_TEST_H_
00003
00004 #include <cppunit/extensions/HelperMacros.h>
00005 #include <libplayerc/playerc.h>
00006
00007 namespace lspTest {
00008 class Proxy : public CppUnit::TestFixture
00009 {
00010 CPPUNIT_TEST_SUITE( Proxy );
00011 CPPUNIT_TEST_SUITE_END_ABSTRACT();
00012
00013 protected:
00014 playerc_client_t* client;
00015
00016 void connect();
00017 void disconnect();
00018
00019 static const double Delta;
00020 };
00021 };
00022
00023 #endif