mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
2010-06-21 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Changed naming standards for class member variable: now it looks like var_ instead of _var.
This commit is contained in:
parent
ae957baa98
commit
ca4940622c
550 changed files with 10253 additions and 10248 deletions
|
@ -17,11 +17,11 @@ class RequestGroupTest : public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST(testCreateDownloadResult);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
SharedHandle<Option> _option;
|
||||
SharedHandle<Option> option_;
|
||||
public:
|
||||
void setUp()
|
||||
{
|
||||
_option.reset(new Option());
|
||||
option_.reset(new Option());
|
||||
}
|
||||
|
||||
void testGetFirstFilePath();
|
||||
|
@ -36,7 +36,7 @@ void RequestGroupTest::testGetFirstFilePath()
|
|||
SharedHandle<DownloadContext> ctx
|
||||
(new DownloadContext(1024, 1024, "/tmp/myfile"));
|
||||
|
||||
RequestGroup group(_option);
|
||||
RequestGroup group(option_);
|
||||
group.setDownloadContext(ctx);
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("/tmp/myfile"), group.getFirstFilePath());
|
||||
|
@ -50,7 +50,7 @@ void RequestGroupTest::testCreateDownloadResult()
|
|||
{
|
||||
SharedHandle<DownloadContext> ctx
|
||||
(new DownloadContext(1024, 1024*1024, "/tmp/myfile"));
|
||||
RequestGroup group(_option);
|
||||
RequestGroup group(option_);
|
||||
group.setDownloadContext(ctx);
|
||||
group.initPieceStorage();
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue