diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-06-06 14:35:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-06-06 14:38:42 +0100 |
commit | e2cd6a77ea0e8a1abd8f4d3570ba4f5fdefff3e1 (patch) | |
tree | a345e3aae24a7f41209b40e370aa89787686979e /comphelper/qa | |
parent | 5662854bc29acb45c1c449c05d1e92f96a4b335a (diff) |
drop String::Reverse
Change-Id: Ie06635dc1f242241d48f9d6de4f592898e605bf2
Diffstat (limited to 'comphelper/qa')
-rw-r--r-- | comphelper/qa/string/test_string.cxx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/comphelper/qa/string/test_string.cxx b/comphelper/qa/string/test_string.cxx index b775e01804da..96706ace353d 100644 --- a/comphelper/qa/string/test_string.cxx +++ b/comphelper/qa/string/test_string.cxx @@ -53,7 +53,7 @@ public: void testTokenCount(); void testDecimalStringToNumber(); void testIsdigitAsciiString(); - void testIndexOfL(); + void testReverseString(); CPPUNIT_TEST_SUITE(TestString); CPPUNIT_TEST(testNatural); @@ -65,6 +65,7 @@ public: CPPUNIT_TEST(testTokenCount); CPPUNIT_TEST(testDecimalStringToNumber); CPPUNIT_TEST(testIsdigitAsciiString); + CPPUNIT_TEST(testReverseString); CPPUNIT_TEST_SUITE_END(); }; @@ -396,6 +397,14 @@ void TestString::testTokenCount() CPPUNIT_ASSERT(nOut == 0); } +void TestString::testReverseString() +{ + ::rtl::OString aIn("ABC"); + ::rtl::OString aOut = ::comphelper::string::reverseString(aIn); + + CPPUNIT_ASSERT(aOut == "CBA"); +} + CPPUNIT_TEST_SUITE_REGISTRATION(TestString); } |