From 1461ebbbb5d47d90e31f0945a4878a68fbee5213 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 1 Feb 2017 09:26:27 +0200 Subject: expand out ::sax::Converter::convertNumber to OUString::number which results in much simpler code overall, there is no need to go via an OUStringBuffer all the time Change-Id: I69eba92c93f471fa9a45f97c29c56dcf3cd1ebf8 Reviewed-on: https://gerrit.libreoffice.org/33773 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- sax/qa/cppunit/test_converter.cxx | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'sax/qa') diff --git a/sax/qa/cppunit/test_converter.cxx b/sax/qa/cppunit/test_converter.cxx index c8b813c47d22..6a1f087e143a 100644 --- a/sax/qa/cppunit/test_converter.cxx +++ b/sax/qa/cppunit/test_converter.cxx @@ -610,15 +610,6 @@ void doTestStringToNumber(sal_Int32 nValue, char const*const pis, sal_Int32 nMin CPPUNIT_ASSERT_EQUAL(nValue, nTemp); } -void doTestNumberToString(char const*const pis, sal_Int32 nValue) -{ - OUString const is(OUString::createFromAscii(pis)); - OUStringBuffer buf; - Converter::convertNumber(buf, nValue); - SAL_INFO("sax.cppunit","" << buf.toString()); - CPPUNIT_ASSERT_EQUAL(is, buf.makeStringAndClear()); -} - void ConverterTest::testNumber() { doTestStringToNumber(30, "30", 1, 40); @@ -626,11 +617,6 @@ void ConverterTest::testNumber() doTestStringToNumber(-30, "7", -100, -30); doTestStringToNumber(0, "-0", 0, 1); doTestStringToNumber(0, "666", -0, 0); - doTestNumberToString("333", 333); - doTestNumberToString("-1", -1); - doTestNumberToString("0", 0000); - doTestNumberToString("-1", -0001); - doTestNumberToString("0", -0); } void doTestEncodeBase64(char const*const pis, const uno::Sequence& aPass) -- cgit