1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.datamodel; |
22 |
|
|
23 |
|
import static org.testng.Assert.assertTrue; |
24 |
|
|
25 |
|
import java.util.NoSuchElementException; |
26 |
|
|
27 |
|
import org.testng.annotations.BeforeClass; |
28 |
|
import org.testng.annotations.Test; |
29 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (32) |
Complexity: 8 |
Complexity Density: 0.38 |
|
30 |
|
public class AllColsIteratorTest |
31 |
|
{ |
32 |
|
HiddenColumns hiddenCols; |
33 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
34 |
1 |
@BeforeClass(alwaysRun = true)... |
35 |
|
public void setup() |
36 |
|
{ |
37 |
1 |
hiddenCols = new HiddenColumns(); |
38 |
1 |
hiddenCols.hideColumns(2, 4); |
39 |
|
} |
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
1PASS
|
|
44 |
1 |
@Test(groups = { "Functional" })... |
45 |
|
public void testHasNextAndNext() |
46 |
|
{ |
47 |
1 |
AllColsIterator it = new AllColsIterator(0, 3, hiddenCols); |
48 |
1 |
int count = 0; |
49 |
5 |
while (it.hasNext()) |
50 |
|
{ |
51 |
4 |
it.next(); |
52 |
4 |
count++; |
53 |
|
} |
54 |
1 |
assertTrue(count == 4, "hasNext() is false after 4 iterations"); |
55 |
|
} |
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
1PASS
|
|
60 |
1 |
@Test(... |
61 |
|
groups = |
62 |
|
{ "Functional" }, |
63 |
|
expectedExceptions = |
64 |
|
{ NoSuchElementException.class }) |
65 |
|
public void testLastNext() throws NoSuchElementException |
66 |
|
{ |
67 |
1 |
AllColsIterator it = new AllColsIterator(0, 3, hiddenCols); |
68 |
5 |
while (it.hasNext()) |
69 |
|
{ |
70 |
4 |
it.next(); |
71 |
|
} |
72 |
1 |
it.next(); |
73 |
|
} |
74 |
|
|
75 |
|
|
76 |
|
|
77 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
1PASS
|
|
78 |
1 |
@Test(... |
79 |
|
groups = |
80 |
|
{ "Functional" }, |
81 |
|
expectedExceptions = |
82 |
|
{ UnsupportedOperationException.class }) |
83 |
|
public void testRemove() throws UnsupportedOperationException |
84 |
|
{ |
85 |
1 |
AllColsIterator it = new AllColsIterator(0, 3, hiddenCols); |
86 |
1 |
it.remove(); |
87 |
|
} |
88 |
|
|
89 |
|
|
90 |
|
|
91 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
1PASS
|
|
92 |
1 |
@Test(groups = { "Functional" })... |
93 |
|
public void testOneElement() |
94 |
|
{ |
95 |
1 |
HiddenColumns hidden = new HiddenColumns(); |
96 |
1 |
AllColsIterator it = new AllColsIterator(0, 0, hidden); |
97 |
1 |
int count = 0; |
98 |
2 |
while (it.hasNext()) |
99 |
|
{ |
100 |
1 |
it.next(); |
101 |
1 |
count++; |
102 |
|
} |
103 |
1 |
assertTrue(count == 1, "hasNext() is false after 1 iteration"); |
104 |
|
} |
105 |
|
} |