diff options
author | Alan Conway <aconway@apache.org> | 2007-01-16 20:17:50 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-01-16 20:17:50 +0000 |
commit | bc84e62cc549ac2d751a45d61a867354c84c60d6 (patch) | |
tree | 160824086ea1edfd2d28f153626d378d69d0f516 /cpp/tests/EventChannelConnectionTest.cpp | |
parent | 0df54842626c3cc065cad1a2595458f54253a178 (diff) | |
download | qpid-python-bc84e62cc549ac2d751a45d61a867354c84c60d6.tar.gz |
* Renamed Session* classes to Connection* to align with AMQP spec
- broker::SessionHandlerImpl -> broker::Connection
- broker::SessionHandlerImplFactory -> broker::ConnectionFactory
- sys::SessionHandler -> ConnectionInputHandler
- sys::SessionHandlerFactory -> ConnectionInputHandlerFactory
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@496848 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/EventChannelConnectionTest.cpp')
-rw-r--r-- | cpp/tests/EventChannelConnectionTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/tests/EventChannelConnectionTest.cpp b/cpp/tests/EventChannelConnectionTest.cpp index a6b309d771..5e94b07dbd 100644 --- a/cpp/tests/EventChannelConnectionTest.cpp +++ b/cpp/tests/EventChannelConnectionTest.cpp @@ -24,11 +24,11 @@ #include "framing/AMQHeartbeatBody.h" #include "framing/AMQFrame.h" #include "sys/posix/EventChannelConnection.h" -#include "sys/SessionHandler.h" -#include "sys/SessionHandlerFactory.h" +#include "sys/ConnectionInputHandler.h" +#include "sys/ConnectionInputHandlerFactory.h" #include "sys/Socket.h" #include "qpid_test_plugin.h" -#include "MockSessionHandler.h" +#include "MockConnectionInputHandler.h" using namespace qpid::sys; using namespace qpid::framing; @@ -100,7 +100,7 @@ class EventChannelConnectionTest : public CppUnit::TestCase EventChannelThreads::shared_ptr threads; int pipe[2]; std::auto_ptr<EventChannelConnection> connection; - MockSessionHandlerFactory factory; + MockConnectionInputHandlerFactory factory; }; // Make this test suite a plugin. |