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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#include <BALL/CONCEPT/classTest.h>
///////////////////////////
# include <BALL/DATATYPE/quadruple.h>
///////////////////////////
START_TEST(Quadruple)
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
using namespace BALL;
CHECK(BALL_CREATE(Quadruple))
Quadruple<int, int, int, int> a(0, 1, 2, 3);
Quadruple<int, int, int, int>* v_ptr = (Quadruple<int, int, int, int>*)a.create();
TEST_EQUAL(v_ptr->first, 0)
delete v_ptr;
RESULT
Quadruple<int, int, int, int>* q;
CHECK(Quadruple() throw())
q = new Quadruple<int, int, int, int>;
TEST_NOT_EQUAL(0, q);
q->first = 1;
q->second = 2;
q->third = 3;
q->fourth = 4;
TEST_EQUAL(q->first, 1)
TEST_EQUAL(q->second, 2)
TEST_EQUAL(q->third, 3)
TEST_EQUAL(q->fourth, 4)
RESULT
CHECK(~Quadruple() throw())
delete q;
RESULT
Quadruple<int, int, int, int> my_q;
my_q.first = 1;
my_q.second = 2;
my_q.third = 3;
my_q.fourth = 4;
CHECK(Quadruple(const Quadruple& quadruple, bool deep = true) throw())
Quadruple<int, int, int, int> q1(my_q);
TEST_EQUAL(q1.first, 1)
TEST_EQUAL(q1.second, 2)
TEST_EQUAL(q1.third, 3)
TEST_EQUAL(q1.fourth, 4)
RESULT
CHECK(Quadruple(const T1& new_first, const T2& new_second, const T3& new_third, const T4& new_fourth) throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
TEST_EQUAL(q1.first, 1)
TEST_EQUAL(q1.second, 2)
TEST_EQUAL(q1.third, 3)
TEST_EQUAL(q1.fourth, 4)
RESULT
CHECK(void clear() throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
q1.clear();
TEST_EQUAL(q1.first, 0)
TEST_EQUAL(q1.second, 0)
TEST_EQUAL(q1.third, 0)
TEST_EQUAL(q1.fourth, 0)
RESULT
CHECK(const Quadruple& operator = (const Quadruple& quadruple) throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
TEST_EQUAL(q1.first, 1)
TEST_EQUAL(q1.second, 2)
TEST_EQUAL(q1.third, 3)
TEST_EQUAL(q1.fourth, 4)
RESULT
CHECK(void set(const T1& t1, const T2& t2, const T3& t3, const T4& t4) throw())
Quadruple<int, int, int, int> q1;
q1.set(1, 2, 3, 4);
TEST_EQUAL(q1.first, 1)
TEST_EQUAL(q1.second, 2)
TEST_EQUAL(q1.third, 3)
TEST_EQUAL(q1.fourth, 4)
RESULT
CHECK(void get(T1& first, T2& second, T3& third, T4& fourth) const throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
int a, b, c, d;
q1.get(a, b, c, d);
TEST_EQUAL(a, 1)
TEST_EQUAL(b, 2)
TEST_EQUAL(c, 3)
TEST_EQUAL(d, 4)
RESULT
CHECK(bool operator == (const Quadruple& quadruple) const throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
Quadruple<int, int, int, int> q2 = Quadruple<int, int, int, int>(1, 2, 3, 4);
TEST_EQUAL(q1 == q2, true)
q2.second = 22;
TEST_EQUAL(q1 == q2, false)
RESULT
CHECK(bool operator != (const Quadruple& quadruple) const throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
Quadruple<int, int, int, int> q2 = Quadruple<int, int, int, int>(1, 2, 3, 4);
TEST_EQUAL(q1 != q2, false)
q2.second = 22;
TEST_EQUAL(q1 != q2, true)
RESULT
CHECK(bool operator < (const Quadruple& quadruple) const throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
Quadruple<int, int, int, int> q2 = Quadruple<int, int, int, int>(1, 2, 4, 3);
TEST_EQUAL(q1 < q2, true)
TEST_EQUAL(q2 < q1, false)
q2.set(1, 2, 3, 4);
TEST_EQUAL(q1 < q2, false)
TEST_EQUAL(q2 < q1, false)
q2.set(0, 1, 2, 3);
TEST_EQUAL(q1 < q2, false)
TEST_EQUAL(q2 < q1, true)
q1.set(0, 1, 2, 3);
TEST_EQUAL(q1 < q2, false)
TEST_EQUAL(q2 < q1, false)
q1.set(0, 1, 2, 4);
TEST_EQUAL(q1 < q2, false)
TEST_EQUAL(q2 < q1, true)
RESULT
CHECK(bool operator > (const Quadruple& quadruple) const throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
Quadruple<int, int, int, int> q2 = Quadruple<int, int, int, int>(1, 2, 4, 3);
TEST_EQUAL(q1 > q2, false)
TEST_EQUAL(q2 > q1, true)
q2.set(1, 2, 3, 4);
TEST_EQUAL(q1 > q2, false)
TEST_EQUAL(q2 > q1, false)
q2.set(0, 1, 2, 3);
TEST_EQUAL(q1 > q2, true)
TEST_EQUAL(q2 > q1, false)
q1.set(0, 1, 2, 3);
TEST_EQUAL(q1 > q2, false)
TEST_EQUAL(q2 > q1, false)
q1.set(0, 1, 2, 4);
TEST_EQUAL(q1 > q2, true)
TEST_EQUAL(q2 > q1, false)
RESULT
CHECK(bool operator <= (const Quadruple& quadruple) const throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
Quadruple<int, int, int, int> q2 = Quadruple<int, int, int, int>(1, 2, 4, 3);
TEST_EQUAL(q1 <= q2, true)
TEST_EQUAL(q2 <= q1, false)
q2.set(1, 2, 3, 4);
TEST_EQUAL(q1 <= q2, true)
TEST_EQUAL(q2 <= q1, true)
q2.set(0, 1, 2, 3);
TEST_EQUAL(q1 <= q2, false)
TEST_EQUAL(q2 <= q1, true)
q1.set(0, 1, 2, 4);
TEST_EQUAL(q1 <= q2, false)
TEST_EQUAL(q2 <= q1, true)
RESULT
CHECK(bool operator >= (const Quadruple& quadruple) const throw())
Quadruple<int, int, int, int> q1 = Quadruple<int, int, int, int>(1, 2, 3, 4);
Quadruple<int, int, int, int> q2 = Quadruple<int, int, int, int>(1, 2, 4, 3);
TEST_EQUAL(q1 >= q2, false)
TEST_EQUAL(q2 >= q1, true)
q2.set(1, 2, 3, 4);
TEST_EQUAL(q1 >= q2, true)
TEST_EQUAL(q2 >= q1, true)
q2.set(0, 1, 2, 3);
TEST_EQUAL(q1 >= q2, true)
TEST_EQUAL(q2 >= q1, false)
q1.set(0, 1, 2, 4);
TEST_EQUAL(q1 >= q2, true)
TEST_EQUAL(q2 >= q1, false)
RESULT
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
END_TEST
|