mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
AbstractSingleDiskAdaptor: Use std::unique_ptr for diskWriter_
This commit is contained in:
parent
f8d305fe63
commit
ae84ff26e2
9 changed files with 60 additions and 54 deletions
|
@ -19,13 +19,14 @@ class WrDiskCacheEntryTest:public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
std::shared_ptr<DirectDiskAdaptor> adaptor_;
|
||||
std::shared_ptr<ByteArrayDiskWriter> writer_;
|
||||
ByteArrayDiskWriter* writer_;
|
||||
public:
|
||||
void setUp()
|
||||
{
|
||||
adaptor_.reset(new DirectDiskAdaptor());
|
||||
writer_.reset(new ByteArrayDiskWriter());
|
||||
adaptor_->setDiskWriter(writer_);
|
||||
adaptor_ = std::make_shared<DirectDiskAdaptor>();
|
||||
auto dw = make_unique<ByteArrayDiskWriter>();
|
||||
writer_ = dw.get();
|
||||
adaptor_->setDiskWriter(std::move(dw));
|
||||
}
|
||||
|
||||
void testWriteToDisk();
|
||||
|
@ -48,7 +49,7 @@ void WrDiskCacheEntryTest::testWriteToDisk()
|
|||
void WrDiskCacheEntryTest::testAppend()
|
||||
{
|
||||
WrDiskCacheEntry e(adaptor_);
|
||||
WrDiskCacheEntry::DataCell* cell = new WrDiskCacheEntry::DataCell();
|
||||
auto cell = new WrDiskCacheEntry::DataCell{};
|
||||
cell->goff = 0;
|
||||
size_t capacity = 6;
|
||||
size_t offset = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue