Use raw pointers to PieceStorage, PeerStorage and DownloadContxt for BtMessages

This commit is contained in:
Tatsuhiro Tsujikawa 2013-06-23 00:01:40 +09:00
parent 09c597fbb8
commit 1a299c4d7c
21 changed files with 87 additions and 63 deletions

View file

@ -70,11 +70,11 @@ void BtNotInterestedMessageTest::testDoReceivedAction() {
peer->allocateSessionResource(1024, 1024*1024);
peer->peerInterested(true);
std::shared_ptr<MockPeerStorage> peerStorage(new MockPeerStorage());
auto peerStorage = make_unique<MockPeerStorage>();
BtNotInterestedMessage msg;
msg.setPeer(peer);
msg.setPeerStorage(peerStorage);
msg.setPeerStorage(peerStorage.get());
CPPUNIT_ASSERT(peer->peerInterested());
msg.doReceivedAction();