mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 04:36:29 -07:00
34 lines
787 B
C++
34 lines
787 B
C++
#include <pqxx/separated_list>
|
|
|
|
#include "../test_helpers.hxx"
|
|
|
|
// Test program for separated_list.
|
|
|
|
namespace
|
|
{
|
|
void test_separated_list()
|
|
{
|
|
PQXX_CHECK_EQUAL(
|
|
pqxx::separated_list(",", std::vector<int>{}), "",
|
|
"Empty list came out wrong.");
|
|
|
|
PQXX_CHECK_EQUAL(
|
|
pqxx::separated_list(",", std::vector<int>{5}), "5",
|
|
"Single-element list came out wrong.");
|
|
|
|
PQXX_CHECK_EQUAL(
|
|
pqxx::separated_list(",", std::vector<int>{3, 6}), "3,6",
|
|
"Things go wrong once separators come in.");
|
|
|
|
std::vector<int> const nums{1, 2, 3};
|
|
PQXX_CHECK_EQUAL(
|
|
pqxx::separated_list(
|
|
"+", std::begin(nums), std::end(nums),
|
|
[](auto elt) { return *elt * 2; }),
|
|
"2+4+6", "Accessors don't seem to work.");
|
|
}
|
|
|
|
|
|
PQXX_REGISTER_TEST(test_separated_list);
|
|
} // namespace
|