summaryrefslogtreecommitdiff
path: root/cpp/src/tests/SimpleTestCaseBase.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-04-29 20:15:18 +0000
committerGordon Sim <gsim@apache.org>2008-04-29 20:15:18 +0000
commitacc0dee435e1fa22e3b1e7cdfecf6913bf88988e (patch)
tree729f7a03543acf23380e68897f8788a3e6b45e2e /cpp/src/tests/SimpleTestCaseBase.h
parenta19ce3b1863f80c1232ec2690cd920325a39d71a (diff)
downloadqpid-python-acc0dee435e1fa22e3b1e7cdfecf6913bf88988e.tar.gz
QPID-974: allow the size of the queue of outgoing frames to be restricted
QPID-544: tidy up configuration (ensuring desired settings are used correctly, allowing tcp socket options to be set etc) git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@652083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/SimpleTestCaseBase.h')
-rw-r--r--cpp/src/tests/SimpleTestCaseBase.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/src/tests/SimpleTestCaseBase.h b/cpp/src/tests/SimpleTestCaseBase.h
index 7f94fa7e1c..e2c328437e 100644
--- a/cpp/src/tests/SimpleTestCaseBase.h
+++ b/cpp/src/tests/SimpleTestCaseBase.h
@@ -28,6 +28,7 @@
#include "qpid/client/Channel.h"
#include "qpid/client/Message.h"
#include "qpid/client/Connection.h"
+#include "qpid/client/ConnectionSettings.h"
#include "qpid/client/MessageListener.h"
#include "TestCase.h"
@@ -49,7 +50,7 @@ protected:
public:
- Worker(TestOptions& options, const int messages);
+ Worker(ConnectionSettings& options, const int messages);
virtual ~Worker(){}
virtual void stop();
@@ -63,7 +64,7 @@ protected:
const Exchange& exchange;
const std::string key;
public:
- Sender(TestOptions& options,
+ Sender(ConnectionSettings& options,
const Exchange& exchange,
const std::string& key,
const int messages);
@@ -74,7 +75,7 @@ protected:
std::auto_ptr<Worker> worker;
public:
- virtual void assign(const std::string& role, framing::FieldTable& params, TestOptions& options) = 0;
+ virtual void assign(const std::string& role, framing::FieldTable& params, ConnectionSettings& options) = 0;
virtual ~SimpleTestCaseBase() {}