1*87d2adbcSAndrew Rist /************************************************************** 2*87d2adbcSAndrew Rist * 3*87d2adbcSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*87d2adbcSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*87d2adbcSAndrew Rist * distributed with this work for additional information 6*87d2adbcSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*87d2adbcSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*87d2adbcSAndrew Rist * "License"); you may not use this file except in compliance 9*87d2adbcSAndrew Rist * with the License. You may obtain a copy of the License at 10*87d2adbcSAndrew Rist * 11*87d2adbcSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*87d2adbcSAndrew Rist * 13*87d2adbcSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*87d2adbcSAndrew Rist * software distributed under the License is distributed on an 15*87d2adbcSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*87d2adbcSAndrew Rist * KIND, either express or implied. See the License for the 17*87d2adbcSAndrew Rist * specific language governing permissions and limitations 18*87d2adbcSAndrew Rist * under the License. 19*87d2adbcSAndrew Rist * 20*87d2adbcSAndrew Rist *************************************************************/ 21*87d2adbcSAndrew Rist 22*87d2adbcSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #include "precompiled_sal.hxx" 25cdf0e10cSrcweir #include "sal/config.h" 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include "cppunit/TestAssert.h" 28cdf0e10cSrcweir #include "cppunit/TestFixture.h" 29cdf0e10cSrcweir #include "cppunit/extensions/HelperMacros.h" 30cdf0e10cSrcweir #include "cppunit/plugin/TestPlugIn.h" 31cdf0e10cSrcweir #include "rtl/math.hxx" 32cdf0e10cSrcweir #include "rtl/ustring.h" 33cdf0e10cSrcweir #include "rtl/ustring.hxx" 34cdf0e10cSrcweir #include "sal/types.h" 35cdf0e10cSrcweir 36cdf0e10cSrcweir namespace { 37cdf0e10cSrcweir 38cdf0e10cSrcweir class Test: public CppUnit::TestFixture { 39cdf0e10cSrcweir public: test_stringToDouble_good()40cdf0e10cSrcweir void test_stringToDouble_good() { 41cdf0e10cSrcweir rtl_math_ConversionStatus status; 42cdf0e10cSrcweir sal_Int32 end; 43cdf0e10cSrcweir double res = rtl::math::stringToDouble( 44cdf0e10cSrcweir rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" +1.E01foo")), 45cdf0e10cSrcweir sal_Unicode('.'), sal_Unicode(','), &status, &end); 46cdf0e10cSrcweir CPPUNIT_ASSERT_EQUAL(rtl_math_ConversionStatus_Ok, status); 47cdf0e10cSrcweir CPPUNIT_ASSERT_EQUAL(sal_Int32(RTL_CONSTASCII_LENGTH(" +1.E01")), end); 48cdf0e10cSrcweir CPPUNIT_ASSERT_EQUAL(10.0, res); 49cdf0e10cSrcweir } 50cdf0e10cSrcweir test_stringToDouble_bad()51cdf0e10cSrcweir void test_stringToDouble_bad() { 52cdf0e10cSrcweir rtl_math_ConversionStatus status; 53cdf0e10cSrcweir sal_Int32 end; 54cdf0e10cSrcweir double res = rtl::math::stringToDouble( 55cdf0e10cSrcweir rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" +Efoo")), 56cdf0e10cSrcweir sal_Unicode('.'), sal_Unicode(','), &status, &end); 57cdf0e10cSrcweir CPPUNIT_ASSERT_EQUAL(rtl_math_ConversionStatus_Ok, status); 58cdf0e10cSrcweir CPPUNIT_ASSERT_EQUAL(sal_Int32(0), end); 59cdf0e10cSrcweir CPPUNIT_ASSERT_EQUAL(0.0, res); 60cdf0e10cSrcweir } 61cdf0e10cSrcweir 62cdf0e10cSrcweir CPPUNIT_TEST_SUITE(Test); 63cdf0e10cSrcweir CPPUNIT_TEST(test_stringToDouble_good); 64cdf0e10cSrcweir CPPUNIT_TEST(test_stringToDouble_bad); 65cdf0e10cSrcweir CPPUNIT_TEST_SUITE_END(); 66cdf0e10cSrcweir }; 67cdf0e10cSrcweir 68cdf0e10cSrcweir CPPUNIT_TEST_SUITE_REGISTRATION(Test); 69cdf0e10cSrcweir 70cdf0e10cSrcweir } 71cdf0e10cSrcweir 72cdf0e10cSrcweir CPPUNIT_PLUGIN_IMPLEMENT(); 73