1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// 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>
namespace {
}
TEST_CASE("curry_test, show_fill_left")
{
using namespace fplus;
REQUIRE_EQ(show_fill_left<int>(' ', 4, 3), " 3");
const auto result_old_style = show_fill_left<int>(' ', 4, 3);
const auto result_new_style = curry::show_fill_left(' ')(std::size_t(4))(3);
//const auto result_new_style = curry__show_fill_left(' ')(std::size_t(4))(3);
REQUIRE_EQ(result_old_style, result_new_style);
}
|