diff --git a/base/base_tests/string_utils_test.cpp b/base/base_tests/string_utils_test.cpp index 8e6e2f5fcb..2e65aa389f 100644 --- a/base/base_tests/string_utils_test.cpp +++ b/base/base_tests/string_utils_test.cpp @@ -17,3 +17,30 @@ UNIT_TEST(make_lower_case) utils::make_lower_case(s); TEST_EQUAL(s, "this_is_lower", ()); } + +UNIT_TEST(to_double) +{ + string s; + double d; + + s = "0.123"; + TEST(utils::to_double(s, d), ()); + TEST_ALMOST_EQUAL(0.123, d, ()); + + s = "1."; + TEST(utils::to_double(s, d), ()); + TEST_ALMOST_EQUAL(1.0, d, ()); + + s = "0"; + TEST(utils::to_double(s, d), ()); + TEST_ALMOST_EQUAL(0., d, ()); + + s = "5.6843418860808e-14"; + TEST(utils::to_double(s, d), ()); + TEST_ALMOST_EQUAL(5.6843418860808e-14, d, ()); + + s = "-2"; + TEST(utils::to_double(s, d), ()); + TEST_ALMOST_EQUAL(-2.0, d, ()); + +}