mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
2007-10-12 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Implemented BitTorrent/http/ftp integrated download. I've rewritten lots of files and now some headers have forward class declarations to reduce compile time. The implementation is extremely alpha stage, I recommend to use this for testing purpose only.
This commit is contained in:
parent
e26bbbb9ee
commit
048a2cf597
252 changed files with 8646 additions and 5343 deletions
31
test/GrowSegmentTest.cc
Normal file
31
test/GrowSegmentTest.cc
Normal file
|
@ -0,0 +1,31 @@
|
|||
#include "GrowSegment.h"
|
||||
#include "Piece.h"
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
class GrowSegmentTest : public CppUnit::TestFixture {
|
||||
|
||||
CPPUNIT_TEST_SUITE(GrowSegmentTest);
|
||||
CPPUNIT_TEST(testUpdateWrittenLength);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
|
||||
public:
|
||||
void setUp() {}
|
||||
|
||||
void testUpdateWrittenLength();
|
||||
};
|
||||
|
||||
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION( GrowSegmentTest );
|
||||
|
||||
void GrowSegmentTest::testUpdateWrittenLength()
|
||||
{
|
||||
GrowSegment segment(new Piece());
|
||||
segment.updateWrittenLength(32*1024);
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)32*1024, segment.getPositionToWrite());
|
||||
CPPUNIT_ASSERT(!segment.complete());
|
||||
CPPUNIT_ASSERT(segment.getPiece()->pieceComplete());
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue