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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
// Miscellaneous tests.
//
// Copyright (C) 2005 Daniel Burrows
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; see the file COPYING. If not, write to
// the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
#include <cppunit/extensions/HelperMacros.h>
#include <generic/util/util.h>
class MiscTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE(MiscTest);
CPPUNIT_TEST(testStripWS);
CPPUNIT_TEST(testOrderlessLt);
CPPUNIT_TEST_SUITE_END();
private:
void assertStripWS(const std::string &s,
const std::string &expected)
{
std::string s2 = s;
stripws(s2);
CPPUNIT_ASSERT_EQUAL(expected, s2);
}
void testStripWS()
{
assertStripWS(" abc", "abc");
assertStripWS("abc ", "abc");
assertStripWS(" abc ", "abc");
assertStripWS(" ", "");
// double-check that there are no weird corner cases involving
// singly letters.
assertStripWS(" a", "a");
assertStripWS("a ", "a");
assertStripWS(" a ", "a");
}
void testOrderlessLt()
{
orderless_lt<int> cmp;
std::pair<int, int> a(1, 2);
std::pair<int, int> b(2, 1);
std::pair<int, int> c(4, 1);
std::pair<int, int> d(1, 4);
std::pair<int, int> e(4, 6);
CPPUNIT_ASSERT(!cmp(a, a));
CPPUNIT_ASSERT(!cmp(b, b));
CPPUNIT_ASSERT(!cmp(c, c));
CPPUNIT_ASSERT(!cmp(d, d));
CPPUNIT_ASSERT(!cmp(e, e));
CPPUNIT_ASSERT(!cmp(a, b));
CPPUNIT_ASSERT( cmp(b, c));
CPPUNIT_ASSERT(!cmp(c, d));
CPPUNIT_ASSERT( cmp(d, e));
CPPUNIT_ASSERT(!cmp(e, a));
CPPUNIT_ASSERT( cmp(a, c));
CPPUNIT_ASSERT( cmp(b, d));
CPPUNIT_ASSERT( cmp(c, e));
CPPUNIT_ASSERT(!cmp(d, a));
CPPUNIT_ASSERT(!cmp(e, b));
CPPUNIT_ASSERT( cmp(a, d));
CPPUNIT_ASSERT( cmp(b, e));
CPPUNIT_ASSERT(!cmp(c, a));
CPPUNIT_ASSERT(!cmp(d, b));
CPPUNIT_ASSERT(!cmp(e, c));
CPPUNIT_ASSERT( cmp(a, e));
CPPUNIT_ASSERT(!cmp(b, a));
CPPUNIT_ASSERT(!cmp(c, b));
CPPUNIT_ASSERT(!cmp(d, c));
CPPUNIT_ASSERT(!cmp(e, d));
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(MiscTest);
|