mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 17:58:09 +08:00
add toml::resize func that resize only resizable container
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
set(TEST_NAMES
|
||||
test_traits
|
||||
test_utility
|
||||
test_value
|
||||
test_to_toml
|
||||
test_from_toml
|
||||
|
64
tests/test_utility.cpp
Normal file
64
tests/test_utility.cpp
Normal file
@@ -0,0 +1,64 @@
|
||||
#define BOOST_TEST_MODULE "test_acceptor"
|
||||
#ifdef UNITTEST_FRAMEWORK_LIBRARY_EXIST
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#else
|
||||
#define BOOST_TEST_NO_LIB
|
||||
#include <boost/test/included/unit_test.hpp>
|
||||
#endif
|
||||
#include <toml/utility.hpp>
|
||||
#include <vector>
|
||||
#include <array>
|
||||
|
||||
BOOST_AUTO_TEST_CASE(test_resize)
|
||||
{
|
||||
{
|
||||
typedef std::vector<int> resizable_type;
|
||||
typedef std::array<int,1> non_resizable_type;
|
||||
BOOST_CHECK(toml::detail::has_resize_method<resizable_type>::value);
|
||||
BOOST_CHECK(not toml::detail::has_resize_method<non_resizable_type>::value);
|
||||
}
|
||||
|
||||
{
|
||||
bool thrown = false;
|
||||
std::vector<int> v;
|
||||
try
|
||||
{
|
||||
toml::resize(v, 10);
|
||||
}
|
||||
catch(std::exception& ex)
|
||||
{
|
||||
thrown = true;
|
||||
}
|
||||
BOOST_CHECK(not thrown);
|
||||
BOOST_CHECK_EQUAL(v.size(), 10);
|
||||
}
|
||||
|
||||
{
|
||||
bool thrown = false;
|
||||
std::array<int, 15> a;
|
||||
try
|
||||
{
|
||||
toml::resize(a, 10);
|
||||
}
|
||||
catch(std::exception& ex)
|
||||
{
|
||||
thrown = true;
|
||||
}
|
||||
BOOST_CHECK(not thrown);
|
||||
BOOST_CHECK_EQUAL(a.size(), 15);
|
||||
}
|
||||
|
||||
{
|
||||
bool thrown = false;
|
||||
std::array<int, 15> a;
|
||||
try
|
||||
{
|
||||
toml::resize(a, 20);
|
||||
}
|
||||
catch(std::exception& ex)
|
||||
{
|
||||
thrown = true;
|
||||
}
|
||||
BOOST_CHECK(thrown);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user