diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-11-01 14:50:17 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-11-03 12:17:41 (GMT) |
commit | 210accbcb135a9551cb56e5197a3a5acf8d15f49 (patch) | |
tree | d330a827ff3f531ab01ab2bb3b8f047a477702c0 /Swiften/Disco/UnitTest/DiscoInfoResponderTest.cpp | |
parent | 9d9fb66aefef85a1c5ad432391014d15011747d1 (diff) | |
download | swift-contrib-210accbcb135a9551cb56e5197a3a5acf8d15f49.zip swift-contrib-210accbcb135a9551cb56e5197a3a5acf8d15f49.tar.bz2 |
Added JIDDiscoInfoResponder + Added "to" parameter to responder callback.
Diffstat (limited to 'Swiften/Disco/UnitTest/DiscoInfoResponderTest.cpp')
-rw-r--r-- | Swiften/Disco/UnitTest/DiscoInfoResponderTest.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/Disco/UnitTest/DiscoInfoResponderTest.cpp b/Swiften/Disco/UnitTest/DiscoInfoResponderTest.cpp index a9e85c0..1b2e54b 100644 --- a/Swiften/Disco/UnitTest/DiscoInfoResponderTest.cpp +++ b/Swiften/Disco/UnitTest/DiscoInfoResponderTest.cpp @@ -78,14 +78,16 @@ class DiscoInfoResponderTest : public CppUnit::TestFixture { void testHandleRequest_GetInvalidNodeInfo() { DiscoInfoResponder testling(router_); - boost::shared_ptr<DiscoInfo> query(new DiscoInfo()); query->setNode("bar-node"); channel_->onIQReceived(IQ::createRequest(IQ::Get, JID("foo@bar.com"), "id-1", query)); + testling.start(); CPPUNIT_ASSERT_EQUAL(1, static_cast<int>(channel_->iqs_.size())); boost::shared_ptr<ErrorPayload> payload(channel_->iqs_[0]->getPayload<ErrorPayload>()); CPPUNIT_ASSERT(payload); + + testling.stop(); } private: |