--- linuxsampler/trunk/src/testcases/LSCPTest.h 2007/06/05 15:55:05 1220 +++ linuxsampler/trunk/src/testcases/LSCPTest.h 2007/06/06 18:50:03 1221 @@ -18,6 +18,7 @@ #include "../network/lscpserver.h" using namespace std; +using namespace LinuxSampler; class LSCPTest : public CppUnit::TestFixture { @@ -41,9 +42,9 @@ bool closeConnectionToLSCPServer(); void sendCommandToLSCPServer(string cmd); - string receiveSingleLineAnswerFromLSCPServer(uint timeout_seconds = 0) throw (LinuxSamplerException); - vector receiveMultiLineAnswerFromLSCPServer(uint timeout_seconds = 0) throw (LinuxSamplerException); - string receiveAnswerFromLSCPServer(string delimiter, uint timeout_seconds = 0) throw (LinuxSamplerException); + string receiveSingleLineAnswerFromLSCPServer(uint timeout_seconds = 0) throw (Exception); + vector receiveMultiLineAnswerFromLSCPServer(uint timeout_seconds = 0) throw (Exception); + string receiveAnswerFromLSCPServer(string delimiter, uint timeout_seconds = 0) throw (Exception); void clearInputBuffer(); public: void setUp();