added bittorrent support(experimental)

This commit is contained in:
Tatsuhiro Tsujikawa 2006-03-21 14:12:51 +00:00
parent a59301bef0
commit df6c7c0385
105 changed files with 7902 additions and 355 deletions

View file

@ -14,6 +14,7 @@ class FileTest:public CppUnit::TestFixture {
CPPUNIT_TEST(testIsFile);
CPPUNIT_TEST(testIsDir);
CPPUNIT_TEST(testRemove);
CPPUNIT_TEST(testSize);
CPPUNIT_TEST_SUITE_END();
private:
@ -25,6 +26,7 @@ public:
void testIsFile();
void testIsDir();
void testRemove();
void testSize();
};
@ -86,3 +88,8 @@ void FileTest::testRemove() {
// delete the directory again
CPPUNIT_ASSERT(!d.remove());
}
void FileTest::testSize() {
File f("4096chunk.txt");
CPPUNIT_ASSERT_EQUAL(4096, (int)f.size());
}