diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-10-23 02:13:18 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-10-23 02:13:18 -0700 |
commit | 9bd5b0be53630787559f32bfbcee0018a3734080 (patch) | |
tree | 365199f0c76a1ab36028d797410ba4e319466b1a | |
parent | 58daa0162cb97209d87f3034a9351688a4631eac (diff) | |
parent | 4538130790da2ef2affda53b40375feaae3414f1 (diff) |
Merge pull request #3133 from laanwj/2013_10_format_monetary_test
Add test for monetary value formatting
-rw-r--r-- | src/test/rpc_tests.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index 35eabed0e2..b771c0c4b9 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -168,4 +168,14 @@ BOOST_AUTO_TEST_CASE(rpc_rawsign) BOOST_CHECK(find_value(r.get_obj(), "complete").get_bool() == true); } +BOOST_AUTO_TEST_CASE(rpc_format_monetary_values) +{ + BOOST_CHECK(write_string(Value(0.0), false) == "0.00000000"); + BOOST_CHECK(write_string(Value(1.0), false) == "1.00000000"); + BOOST_CHECK(write_string(Value(0.5), false) == "0.50000000"); + BOOST_CHECK(write_string(Value(0.00000001), false) == "0.00000001"); + BOOST_CHECK(write_string(Value(0.17622195), false) == "0.17622195"); + BOOST_CHECK(write_string(Value(0.89898989), false) == "0.89898989"); +} + BOOST_AUTO_TEST_SUITE_END() |