forked from organicmaps/organicmaps
Updated string_utils tests
This commit is contained in:
parent
833ded9fc5
commit
4b958d35be
1 changed files with 27 additions and 0 deletions
|
@ -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, ());
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue