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
|
<?php
Prado::using('System.Collections.TStack');
/**
* @package System.Collections
*/
class TStackTest extends PHPUnit_Framework_TestCase {
public function setUp() {
}
public function tearDown() {
}
public function testConstruct() {
$stack = new TStack();
self::assertEquals(array(), $stack->toArray());
$stack = new TStack(array(1, 2, 3));
self::assertEquals(array(1, 2, 3), $stack->toArray());
}
public function testToArray() {
$stack = new TStack(array(1, 2, 3));
self::assertEquals(array(1, 2, 3), $stack->toArray());
}
public function testCopyFrom() {
$stack = new TStack(array(1, 2, 3));
$data = array(4, 5, 6);
$stack->copyFrom($data);
self::assertEquals(array(4, 5, 6), $stack->toArray());
}
public function testCanNotCopyFromNonTraversableTypes() {
$stack = new TStack();
$data = new stdClass();
try {
$stack->copyFrom($data);
} catch(TInvalidDataTypeException $e) {
return;
}
self::fail('An expected TInvalidDataTypeException was not raised');
}
public function testClear() {
$stack = new TStack(array(1, 2, 3));
$stack->clear();
self::assertEquals(array(), $stack->toArray());
}
public function testContains() {
$stack = new TStack(array(1, 2, 3));
self::assertEquals(true, $stack->contains(2));
self::assertEquals(false, $stack->contains(4));
}
public function testPeek() {
$stack = new TStack(array(1));
self::assertEquals(1, $stack->peek());
}
public function testCanNotPeekAnEmptyStack() {
$stack = new TStack();
try {
$item = $stack->peek();
} catch(TInvalidOperationException $e) {
return;
}
self::fail('An expected TInvalidOperationException was not raised');
}
public function testPop() {
$stack = new TStack(array(1, 2, 3));
$last = $stack->pop();
self::assertEquals(3, $last);
self::assertEquals(array(1, 2), $stack->toArray());
}
public function testCanNotPopAnEmptyStack() {
$stack = new TStack();
try {
$item = $stack->pop();
} catch(TInvalidOperationException $e) {
return;
}
self::fail('An expected TInvalidOperationException was not raised');
}
public function testPush() {
$stack = new TStack();
$stack->push(1);
self::assertEquals(array(1), $stack->toArray());
}
public function testGetIterator() {
$stack = new TStack(array(1, 2));
self::assertInstanceOf('ArrayIterator', $stack->getIterator());
$n = 0;
$found = 0;
foreach($stack as $index => $item) {
foreach($stack as $a => $b); // test of iterator
$n++;
if($index === 0 && $item === 1) {
$found++;
}
if($index === 1 && $item === 2) {
$found++;
}
}
self::assertTrue($n == 2 && $found == 2);
}
public function testGetCount() {
$stack = new TStack();
self::assertEquals(0, $stack->getCount());
$stack = new TStack(array(1, 2, 3));
self::assertEquals(3, $stack->getCount());
}
public function testCount() {
$stack = new TStack();
self::assertEquals(0, count($stack));
$stack = new TStack(array(1, 2, 3));
self::assertEquals(3, count($stack));
}
}
|