13 #include "eckit/testing/Test.h"
15 using namespace eckit::testing;
20 CASE(
"Non-empty inputs of equal element counts") {
21 std::vector<std::string> strVec1 = {
"a",
"A",
"1"};
22 std::vector<std::string> strVec2 = {
"b",
"B",
"2"};
23 std::vector<std::string> strVec3 = {
"c",
"C",
"3"};
24 std::vector<std::string> expectedOutputVec = {
"abc",
"ABC",
"123"};
26 std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
30 EXPECT(expectedOutputVec == outputVector);
33 CASE(
"Empty inputs of equal element counts") {
34 std::vector<std::string> strVec1 = {
"",
"",
""};
35 std::vector<std::string> strVec2 = {
"",
"",
""};
36 std::vector<std::string> strVec3 = {
"",
"",
""};
37 std::vector<std::string> expectedOutputVec = {
"",
"",
""};
39 std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
43 EXPECT(expectedOutputVec == outputVector);
46 CASE(
"Unequal element counts") {
47 std::vector<std::string> strVec1 = {
"a",
"A",
"1"};
48 std::vector<std::string> strVec2 = {
"b",
"B",
"2"};
49 std::vector<std::string> strVec3 = {
"c",
"3"};
51 std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
57 std::vector<std::string> strVec1 = {
"a",
"A",
"1"};
59 std::vector<std::vector<std::string> > combinedVec = {strVec1};
61 EXPECT(strVec1 == outputVector);
64 CASE(
"Trailing spaces removed") {
65 std::vector<std::string> strVec1 = {
"f oo",
"b ar",
" baz"};
66 std::vector<std::string> strVec2 = {
"f o o",
"ba r",
"baz"};
67 std::vector<std::string> strVec3 = {
"f o o ",
"bar ",
"baz "};
68 std::vector<std::string> expectedOutputVec = {
"f oof o of o o",
"b arba rbar",
" bazbazbaz"};
70 std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
74 EXPECT(expectedOutputVec == outputVector);
77 CASE(
"All space vectors") {
78 std::vector<std::string> strVec1 = {
"",
"",
" "};
79 std::vector<std::string> strVec2 = {
"",
" ",
" "};
80 std::vector<std::string> strVec3 = {
" ",
" ",
" "};
81 std::vector<std::string> expectedOutputVec = {
"",
"",
""};
83 std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
87 EXPECT(expectedOutputVec == outputVector);
93 int main(
int argc,
char** argv) {
94 return run_tests(argc, argv);
IODA_DL std::vector< std::string > concatenateStringVectors(const std::vector< std::vector< std::string >> &stringVectors)
Concatenate equal-length vectors of strings element-by-element. Removes trailing spaces.
int main(int argc, char **argv)