1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
// Copyright 2015, Tobias Hermann and the FunctionalPlus contributors.
// https://github.com/Dobiasd/FunctionalPlus
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include "doctest/doctest.h"
#include <fplus/fplus.hpp>
#include <fplus/fwd.hpp>
#include "get_locale.hpp"
TEST_CASE("stringtools_test, to_lower/upper_case, cp1253")
{
using namespace fplus;
const std::locale loc = get_locale(
#if defined(WIN32)
"el-GR"
#elif defined(__APPLE__)
"el_GR.ISO8859-7"
#else
"el_GR.cp1253"
#endif
);
auto lower = fwd::to_lower_case_loc(loc);
auto upper = fwd::to_upper_case_loc(loc);
REQUIRE_EQ(lower(std::string("GrEeCe 123&? ")), std::string("greece 123&? "));
REQUIRE_EQ(lower(std::string("")), std::string(""));
REQUIRE_EQ(upper(std::string("GrEeCe 123&? ")), std::string("GREECE 123&? "));
REQUIRE_EQ(upper(std::string("")), std::string(""));
}
|