mirror of
https://github.com/aria2/aria2.git
synced 2024-12-14 09:28:55 +00:00
f7e3651d91
Applied tizianomueller's patch to fix compile error. * test/BitfieldManTest.cc * test/BtRequestMessageTest.cc * test/DefaultBtContextTest.cc * test/DefaultDiskWriterTest.cc * test/DefaultPieceStorageTest.cc * test/HttpHeaderProcessorTest.cc * test/HttpResponseTest.cc * test/Metalink2RequestGroupTest.cc * test/MetalinkParserControllerTest.cc * test/MetalinkProcessorTest.cc * test/PeerSessionResourceTest.cc * test/UtilTest.cc
31 lines
560 B
C++
31 lines
560 B
C++
#include "DefaultDiskWriter.h"
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
namespace aria2 {
|
|
|
|
class DefaultDiskWriterTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DefaultDiskWriterTest);
|
|
CPPUNIT_TEST(testSize);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
private:
|
|
|
|
public:
|
|
void setUp() {
|
|
}
|
|
|
|
void testSize();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( DefaultDiskWriterTest );
|
|
|
|
void DefaultDiskWriterTest::testSize()
|
|
{
|
|
DefaultDiskWriter dw;
|
|
dw.openExistingFile("4096chunk.txt");
|
|
CPPUNIT_ASSERT_EQUAL((uint64_t)4096ULL, dw.size());
|
|
}
|
|
|
|
} // namespace aria2
|