diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-06-02 18:20:39 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-06-02 18:20:39 +0000 |
commit | cbbf633edb3d7751cd313bca1839ade9f23d84f2 (patch) | |
tree | 2e0628169521f1b96ee5ed55ec8f94dce86190c5 /libcxx/test/strings/string.conversions/to_string.pass.cpp | |
parent | 94801a47f80c1ff383d14b84f7e68affb4542b3f (diff) | |
download | bcm5719-llvm-cbbf633edb3d7751cd313bca1839ade9f23d84f2.tar.gz bcm5719-llvm-cbbf633edb3d7751cd313bca1839ade9f23d84f2.zip |
[string.conversions]
llvm-svn: 105336
Diffstat (limited to 'libcxx/test/strings/string.conversions/to_string.pass.cpp')
-rw-r--r-- | libcxx/test/strings/string.conversions/to_string.pass.cpp | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/libcxx/test/strings/string.conversions/to_string.pass.cpp b/libcxx/test/strings/string.conversions/to_string.pass.cpp new file mode 100644 index 00000000000..86e2b6b4c74 --- /dev/null +++ b/libcxx/test/strings/string.conversions/to_string.pass.cpp @@ -0,0 +1,126 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// <string> + +// string to_string(int val); +// string to_string(unsigned val); +// string to_string(long val); +// string to_string(unsigned long val); +// string to_string(long long val); +// string to_string(unsigned long long val); +// string to_string(float val); +// string to_string(double val); +// string to_string(long double val); + +#include <string> +#include <cassert> +#include <sstream> + +template <class T> +void +test_signed() +{ + { + std::string s = std::to_string(T(0)); + assert(s.size() == 1); + assert(s[s.size()] == 0); + assert(s == "0"); + } + { + std::string s = std::to_string(T(12345)); + assert(s.size() == 5); + assert(s[s.size()] == 0); + assert(s == "12345"); + } + { + std::string s = std::to_string(T(-12345)); + assert(s.size() == 6); + assert(s[s.size()] == 0); + assert(s == "-12345"); + } + { + std::string s = std::to_string(std::numeric_limits<T>::max()); + assert(s.size() == std::numeric_limits<T>::digits10 + 1); + std::istringstream is(s); + T t(0); + is >> t; + assert(t == std::numeric_limits<T>::max()); + } + { + std::string s = std::to_string(std::numeric_limits<T>::min()); + std::istringstream is(s); + T t(0); + is >> t; + assert(t == std::numeric_limits<T>::min()); + } +} + +template <class T> +void +test_unsigned() +{ + { + std::string s = std::to_string(T(0)); + assert(s.size() == 1); + assert(s[s.size()] == 0); + assert(s == "0"); + } + { + std::string s = std::to_string(T(12345)); + assert(s.size() == 5); + assert(s[s.size()] == 0); + assert(s == "12345"); + } + { + std::string s = std::to_string(std::numeric_limits<T>::max()); + assert(s.size() == std::numeric_limits<T>::digits10 + 1); + std::istringstream is(s); + T t(0); + is >> t; + assert(t == std::numeric_limits<T>::max()); + } +} + +template <class T> +void +test_float() +{ + { + std::string s = std::to_string(T(0)); + assert(s.size() == 8); + assert(s[s.size()] == 0); + assert(s == "0.000000"); + } + { + std::string s = std::to_string(T(12345)); + assert(s.size() == 12); + assert(s[s.size()] == 0); + assert(s == "12345.000000"); + } + { + std::string s = std::to_string(T(-12345)); + assert(s.size() == 13); + assert(s[s.size()] == 0); + assert(s == "-12345.000000"); + } +} + +int main() +{ + test_signed<int>(); + test_signed<long>(); + test_signed<long long>(); + test_unsigned<unsigned>(); + test_unsigned<unsigned long>(); + test_unsigned<unsigned long long>(); + test_float<float>(); + test_float<double>(); + test_float<long double>(); +} |