mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 22:17:38 +03:00
Merged Ross's patch to test code.
This commit is contained in:
parent
8d84d9f97c
commit
19ef788023
30 changed files with 173 additions and 107 deletions
|
@ -98,9 +98,9 @@ void BtRejectMessageTest::testCreate() {
|
|||
PeerMessageUtil::setIntParam(&msg[13], 1024);
|
||||
BtRejectMessageHandle pm = BtRejectMessage::create(&msg[4], 13);
|
||||
CPPUNIT_ASSERT_EQUAL((int8_t)16, pm->getId());
|
||||
CPPUNIT_ASSERT_EQUAL(12345, pm->getIndex());
|
||||
CPPUNIT_ASSERT_EQUAL(256, pm->getBegin());
|
||||
CPPUNIT_ASSERT_EQUAL(1024, pm->getLength());
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)12345, pm->getIndex());
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)256, pm->getBegin());
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)1024, pm->getLength());
|
||||
|
||||
// case: payload size is wrong
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue