Files
algorithm/test/is_palindrome_test.cpp

69 lines
1.8 KiB
C++
Raw Normal View History

2016-07-06 11:42:18 +03:00
/*
Copyright (c) Alexander Zaitsev <zamazan4ik@gmail.com>, 2016
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)
See http://www.boost.org/ for latest version.
*/
2016-07-06 11:57:05 +03:00
#include <boost/config.hpp>
#include <boost/algorithm/is_palindrome.hpp>
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
2016-07-06 11:42:18 +03:00
#include <algorithm>
#include <iostream>
#include <list>
#include <vector>
namespace ba = boost::algorithm;
template <typename T>
bool funcComparator(const T& v1, const T& v2)
{
return v1 == v2;
}
struct functorComparator
{
template <typename T>
bool operator()(const T& v1, const T& v2) const
{
return v1 == v2;
}
};
2016-07-06 11:57:05 +03:00
void test_is_palindrome()
2016-07-06 11:42:18 +03:00
{
const std::list<int> empty;
const std::vector<char> singleElement{'z'};
int oddNonPalindrome[] = {3,2,2};
const int evenPalindrome[] = {1,2,2,1};
// Test a default operator==
BOOST_CHECK ( ba::is_palindrome(empty));
BOOST_CHECK ( ba::is_palindrome(singleElement));
BOOST_CHECK (!ba::is_palindrome(std::begin(oddNonPalindrome), std::end(oddNonPalindrome)));
BOOST_CHECK ( ba::is_palindrome(std::begin(evenPalindrome), std::end(evenPalindrome)));
//Test the custom comparators
BOOST_CHECK ( ba::is_palindrome(empty.begin(), empty.end(), functorComparator()));
BOOST_CHECK (!ba::is_palindrome(std::begin(oddNonPalindrome), std::end(oddNonPalindrome), funcComparator<int>));
BOOST_CHECK ( ba::is_palindrome(evenPalindrome, std::equal_to<int>()));
//Only C++14 or newer
//auto lambdaComparator = [](const auto& v1, const auto& v2){ return v1 == v2; };
//BOOST_CHECK ( ba::is_palindrome(singleElement, lambdaComparator));
}
2016-07-06 11:57:05 +03:00
BOOST_AUTO_TEST_CASE( test_main )
2016-07-06 11:42:18 +03:00
{
2016-07-06 11:57:05 +03:00
test_is_palindrome ();
2016-07-06 11:42:18 +03:00
}