|
@@ -9,7 +9,6 @@ class AlphaNumberDecoratorTest:public CppUnit::TestFixture {
|
|
|
CPPUNIT_TEST_SUITE(AlphaNumberDecoratorTest);
|
|
|
CPPUNIT_TEST(testDecorate);
|
|
|
CPPUNIT_TEST(testDecorate_uppercase);
|
|
|
- CPPUNIT_TEST(testDecorate_minus);
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
private:
|
|
|
|
|
@@ -19,7 +18,6 @@ public:
|
|
|
|
|
|
void testDecorate();
|
|
|
void testDecorate_uppercase();
|
|
|
- void testDecorate_minus();
|
|
|
};
|
|
|
|
|
|
|
|
@@ -41,9 +39,4 @@ void AlphaNumberDecoratorTest::testDecorate_uppercase()
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("AAB"), AlphaNumberDecorator(3, true).decorate(1));
|
|
|
}
|
|
|
|
|
|
-void AlphaNumberDecoratorTest::testDecorate_minus()
|
|
|
-{
|
|
|
- CPPUNIT_ASSERT_EQUAL(std::string("NXMRLXV"), AlphaNumberDecorator(1, true).decorate(-1));
|
|
|
-}
|
|
|
-
|
|
|
} // namespace aria2
|