mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
added bittorrent support(experimental)
This commit is contained in:
parent
a59301bef0
commit
df6c7c0385
105 changed files with 7902 additions and 355 deletions
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue