-
Notifications
You must be signed in to change notification settings - Fork 14
/
TestArray.cpp
128 lines (96 loc) · 2.23 KB
/
TestArray.cpp
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
#include <cctest/cctest.h>
#include <cub/repo/array/Array.h>
USING_CUB_NS
namespace
{
struct PlainObject
{
int a;
int b;
};
const int INVALID_VALUE = 0xFF;
struct Object
{
Object() : value(INVALID_VALUE)
{
}
Object(int value)
:value(value)
{
}
int getValue() const
{
return value;
}
void update(U8 v)
{
value = v;
}
private:
U8 value;
};
}
FIXTURE(ArrayTest)
{
TEST("should define plain object array")
{
Array<PlainObject, 2> objects;
objects[0].a = 1;
objects[1].b = 2;
ASSERT_EQ(2, objects.size());
ASSERT_EQ(1, objects[0].a);
ASSERT_EQ(2, objects[1].b);
}
TEST("should define object array with default constructor")
{
Array<Object, 2> objects;
ASSERT_EQ(INVALID_VALUE, objects[0].getValue());
ASSERT_EQ(INVALID_VALUE, objects[1].getValue());
}
TEST("should define object array with para constructor")
{
Array<Object, 2> objects(5);
ASSERT_EQ(5, objects[0].getValue());
ASSERT_EQ(5, objects[1].getValue());
}
TEST("should invoke unconst method of array elem")
{
Array<Object, 2> objects(5);
objects[1].update(10);
ASSERT_EQ(5, objects[0].getValue());
ASSERT_EQ(10, objects[1].getValue());
}
TEST("should emplace a array elem")
{
Array<Object, 2> objects;
objects.emplace(1, 5);
ASSERT_EQ(INVALID_VALUE, objects[0].getValue());
ASSERT_EQ(5, objects[1].getValue());
}
TEST("should use the iterator of array")
{
typedef Array<Object, 2> ThisArray;
ThisArray objects;
ThisArray::Iterator i = objects.begin();
ASSERT_EQ(INVALID_VALUE, i->getValue());
objects[1].update(5);
i++;
ASSERT_EQ(5, i->getValue());
i->update(10);
ASSERT_EQ(10, objects[1].getValue());
ASSERT_NE(i, objects.end());
ASSERT_EQ(++i, objects.end());
}
TEST("should travel array")
{
typedef Array<Object, 2> ThisArray;
ThisArray objects(10);
objects[1].update(5);
U32 sum = 0;
ARRAY_FOREACH(ThisArray, i, objects)
{
sum += i->getValue();
}
ASSERT_EQ(15, sum);
}
};