|
@@ -0,0 +1,185 @@
|
|
1
|
+package io.zipcoder;
|
|
2
|
+
|
|
3
|
+import org.junit.Assert;
|
|
4
|
+import org.junit.Before;
|
|
5
|
+import org.junit.Test;
|
|
6
|
+
|
|
7
|
+public class ArrayDrillsTest {
|
|
8
|
+ private ArrayDrills arrayDrills;
|
|
9
|
+
|
|
10
|
+ @Before
|
|
11
|
+ public void setup(){
|
|
12
|
+ this.arrayDrills = new ArrayDrills();
|
|
13
|
+ }
|
|
14
|
+
|
|
15
|
+ @Test
|
|
16
|
+ public void firstLastTest1(){
|
|
17
|
+ Integer inputValue = 6;
|
|
18
|
+ Integer[] inputArray = {6,1,2,3};
|
|
19
|
+ Boolean actual = arrayDrills.firstLast(inputValue, inputArray);
|
|
20
|
+ Assert.assertTrue(actual);
|
|
21
|
+ }
|
|
22
|
+
|
|
23
|
+ @Test
|
|
24
|
+ public void firstLastTest2(){
|
|
25
|
+ Integer inputValue = 6;
|
|
26
|
+ Integer[] inputArray = {1,2,6};
|
|
27
|
+ Boolean actual = arrayDrills.firstLast(inputValue, inputArray);
|
|
28
|
+ Assert.assertTrue(actual);
|
|
29
|
+ }
|
|
30
|
+
|
|
31
|
+ @Test
|
|
32
|
+ public void firstLastTest3(){
|
|
33
|
+ Integer inputValue = 8;
|
|
34
|
+ Integer[] inputArray = {6,1,2,2};
|
|
35
|
+ Boolean actual = arrayDrills.firstLast(inputValue, inputArray);
|
|
36
|
+ Assert.assertFalse(actual);
|
|
37
|
+ }
|
|
38
|
+
|
|
39
|
+ @Test
|
|
40
|
+ public void sameFirstLastTest1(){
|
|
41
|
+ Integer[] inputArray = {6,1,2,2};
|
|
42
|
+ Boolean actual = arrayDrills.sameFirstLast(inputArray);
|
|
43
|
+ Assert.assertFalse(actual);
|
|
44
|
+ }
|
|
45
|
+
|
|
46
|
+ @Test
|
|
47
|
+ public void sameFirstLastTest2(){
|
|
48
|
+ Integer[] inputArray = {6,1,2,6};
|
|
49
|
+ Boolean actual = arrayDrills.sameFirstLast(inputArray);
|
|
50
|
+ Assert.assertTrue(actual);
|
|
51
|
+ }
|
|
52
|
+
|
|
53
|
+ @Test
|
|
54
|
+ public void sameFirstLastTest3(){
|
|
55
|
+ Integer[] inputArray = {1,1};
|
|
56
|
+ Boolean actual = arrayDrills.sameFirstLast(inputArray);
|
|
57
|
+ Assert.assertTrue(actual);
|
|
58
|
+ }
|
|
59
|
+
|
|
60
|
+ @Test
|
|
61
|
+ public void commonEndTest1(){
|
|
62
|
+ Integer[] inputArray1 = {1,2,3};
|
|
63
|
+ Integer[] inputArray2 = {7,3};
|
|
64
|
+ Boolean actual = arrayDrills.commonEnd(inputArray1, inputArray2);
|
|
65
|
+ Assert.assertTrue(actual);
|
|
66
|
+ }
|
|
67
|
+
|
|
68
|
+ @Test
|
|
69
|
+ public void commonEndTest2(){
|
|
70
|
+ Integer[] inputArray1 = {1,2,3};
|
|
71
|
+ Integer[] inputArray2 = {7,3,2};
|
|
72
|
+ Boolean actual = arrayDrills.commonEnd(inputArray1, inputArray2);
|
|
73
|
+ Assert.assertFalse(actual);
|
|
74
|
+ }
|
|
75
|
+
|
|
76
|
+ @Test
|
|
77
|
+ public void commonEndTest3(){
|
|
78
|
+ Integer[] inputArray1 = {1,2,3};
|
|
79
|
+ Integer[] inputArray2 = {1,3};
|
|
80
|
+ Boolean actual = arrayDrills.commonEnd(inputArray1, inputArray2);
|
|
81
|
+ Assert.assertTrue(actual);
|
|
82
|
+ }
|
|
83
|
+
|
|
84
|
+ @Test
|
|
85
|
+ public void rotateLeftTest1(){
|
|
86
|
+ Integer[] inputArray = {1,2,3};
|
|
87
|
+ Integer[] expected = {2,3,1};
|
|
88
|
+ Integer[] actual = arrayDrills.rotateLeft(inputArray);
|
|
89
|
+ Assert.assertArrayEquals(expected, actual);
|
|
90
|
+ }
|
|
91
|
+
|
|
92
|
+ @Test
|
|
93
|
+ public void rotateLeftTest2(){
|
|
94
|
+ Integer[] inputArray = {5,11,9};
|
|
95
|
+ Integer[] expected = {11,9,5};
|
|
96
|
+ Integer[] actual = arrayDrills.rotateLeft(inputArray);
|
|
97
|
+ Assert.assertArrayEquals(expected, actual);
|
|
98
|
+ }
|
|
99
|
+
|
|
100
|
+ @Test
|
|
101
|
+ public void rotateLeftTest3(){
|
|
102
|
+ Integer[] inputArray = {7,0,0};
|
|
103
|
+ Integer[] expected = {0,0,7};
|
|
104
|
+ Integer[] actual = arrayDrills.rotateLeft(inputArray);
|
|
105
|
+ Assert.assertArrayEquals(expected, actual);
|
|
106
|
+ }
|
|
107
|
+
|
|
108
|
+ @Test
|
|
109
|
+ public void maxValueTest1(){
|
|
110
|
+ Integer[] inputArray = {1,2,3};
|
|
111
|
+ Integer[] expected = {3,3,3};
|
|
112
|
+ Integer[] actual = arrayDrills.maxValue(inputArray);
|
|
113
|
+ Assert.assertArrayEquals(expected, actual);
|
|
114
|
+ }
|
|
115
|
+
|
|
116
|
+ @Test
|
|
117
|
+ public void maxValueTest2(){
|
|
118
|
+ Integer[] inputArray = {5,11,9,34,2};
|
|
119
|
+ Integer[] expected = {34,34,34,34,34};
|
|
120
|
+ Integer[] actual = arrayDrills.maxValue(inputArray);
|
|
121
|
+ Assert.assertArrayEquals(expected, actual);
|
|
122
|
+ }
|
|
123
|
+
|
|
124
|
+ @Test
|
|
125
|
+ public void maxValueTest3(){
|
|
126
|
+ Integer[] inputArray = {2,11,3};
|
|
127
|
+ Integer[] expected = {11,11,11};
|
|
128
|
+ Integer[] actual = arrayDrills.maxValue(inputArray);
|
|
129
|
+ Assert.assertArrayEquals(expected, actual);
|
|
130
|
+ }
|
|
131
|
+
|
|
132
|
+ @Test
|
|
133
|
+ public void middleWayTest1(){
|
|
134
|
+ Integer[] inputArray1 = {1,2,3};
|
|
135
|
+ Integer[] inputArray2 = {4,5,6,2};
|
|
136
|
+ Integer[] expected = {2,11};
|
|
137
|
+ Integer[] actual = arrayDrills.middleWay(inputArray1, inputArray2);
|
|
138
|
+ Assert.assertArrayEquals(expected, actual);
|
|
139
|
+ }
|
|
140
|
+
|
|
141
|
+ @Test
|
|
142
|
+ public void middleWayTest2(){
|
|
143
|
+ Integer[] inputArray1 = {5,1,2,9};
|
|
144
|
+ Integer[] inputArray2 = {3,4,5,5};
|
|
145
|
+ Integer[] expected = {3,9};
|
|
146
|
+ Integer[] actual = arrayDrills.middleWay(inputArray1, inputArray2);
|
|
147
|
+ Assert.assertArrayEquals(expected, actual);
|
|
148
|
+ }
|
|
149
|
+
|
|
150
|
+ @Test
|
|
151
|
+ public void middleWayTest3(){
|
|
152
|
+ Integer[] inputArray1 = {5,6,7,4,5};
|
|
153
|
+ Integer[] inputArray2 = {2,33,4,5,5};
|
|
154
|
+ Integer[] expected = {7,4};
|
|
155
|
+ Integer[] actual = arrayDrills.middleWay(inputArray1, inputArray2);
|
|
156
|
+ Assert.assertArrayEquals(expected, actual);
|
|
157
|
+ }
|
|
158
|
+
|
|
159
|
+ @Test
|
|
160
|
+ public void biggerTwo1(){
|
|
161
|
+ Integer[] inputArray1 = {5,6};
|
|
162
|
+ Integer[] inputArray2 = {2,33};
|
|
163
|
+ Integer[] expected = {2,33};
|
|
164
|
+ Integer[] actual = arrayDrills.biggerTwo(inputArray1, inputArray2);
|
|
165
|
+ Assert.assertArrayEquals(expected, actual);
|
|
166
|
+ }
|
|
167
|
+
|
|
168
|
+ @Test
|
|
169
|
+ public void biggerTwo2(){
|
|
170
|
+ Integer[] inputArray1 = {12, 12};
|
|
171
|
+ Integer[] inputArray2 = {12,12};
|
|
172
|
+ Integer[] expected = {12,12};
|
|
173
|
+ Integer[] actual = arrayDrills.biggerTwo(inputArray1, inputArray2);
|
|
174
|
+ Assert.assertArrayEquals(expected, actual);
|
|
175
|
+ }
|
|
176
|
+
|
|
177
|
+ @Test
|
|
178
|
+ public void biggerTwo3(){
|
|
179
|
+ Integer[] inputArray1 = {-1 ,20};
|
|
180
|
+ Integer[] inputArray2 = {2, 15};
|
|
181
|
+ Integer[] expected = {1,20};
|
|
182
|
+ Integer[] actual = arrayDrills.biggerTwo(inputArray1, inputArray2);
|
|
183
|
+ Assert.assertArrayEquals(expected, actual);
|
|
184
|
+ }
|
|
185
|
+}
|