mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
2008-12-04 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added Option::blank(). Use !Option::blank(name) instead of Option::defined(name) for the options that take filename. * src/MultiUrlRequestInfo.cc * src/Option.cc * src/Option.h * src/main.cc * src/option_processing.cc * test/OptionTest.cc
This commit is contained in:
parent
fe66fb6eae
commit
1e6a579258
7 changed files with 59 additions and 11 deletions
|
@ -10,6 +10,8 @@ class OptionTest:public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST(testPutAndGet);
|
||||
CPPUNIT_TEST(testPutAndGetAsInt);
|
||||
CPPUNIT_TEST(testPutAndGetAsDouble);
|
||||
CPPUNIT_TEST(testDefined);
|
||||
CPPUNIT_TEST(testBlank);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
|
||||
|
@ -20,6 +22,8 @@ public:
|
|||
void testPutAndGet();
|
||||
void testPutAndGetAsInt();
|
||||
void testPutAndGetAsDouble();
|
||||
void testDefined();
|
||||
void testBlank();
|
||||
};
|
||||
|
||||
|
||||
|
@ -48,4 +52,24 @@ void OptionTest::testPutAndGetAsDouble() {
|
|||
CPPUNIT_ASSERT_EQUAL(10.0, op.getAsDouble("key"));
|
||||
}
|
||||
|
||||
void OptionTest::testDefined()
|
||||
{
|
||||
Option op;
|
||||
op.put("k", "v");
|
||||
op.put("k1", "");
|
||||
CPPUNIT_ASSERT(op.defined("k"));
|
||||
CPPUNIT_ASSERT(op.defined("k1"));
|
||||
CPPUNIT_ASSERT(!op.defined("undefined"));
|
||||
}
|
||||
|
||||
void OptionTest::testBlank()
|
||||
{
|
||||
Option op;
|
||||
op.put("k", "v");
|
||||
op.put("k1", "");
|
||||
CPPUNIT_ASSERT(!op.blank("k"));
|
||||
CPPUNIT_ASSERT(op.blank("k1"));
|
||||
CPPUNIT_ASSERT(op.blank("undefined"));
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue