|
@@ -0,0 +1,84 @@
|
|
1
|
+package rocks.zipcode.io.quiz4.objectorientation.stringevaluatorobject;
|
|
2
|
+
|
|
3
|
+import org.junit.Test;
|
|
4
|
+import rocks.zipcode.io.quiz4.fundamentals.StringEvaluator;
|
|
5
|
+import rocks.zipcode.io.quiz4.objectorientation.StringEvaluatorObject;
|
|
6
|
+import rocks.zipcode.io.quiz4.utils.TestUtils;
|
|
7
|
+
|
|
8
|
+/**
|
|
9
|
+ * @author leon on 11/12/2018.
|
|
10
|
+ */
|
|
11
|
+public class GetAllPrefixes {
|
|
12
|
+ @Test
|
|
13
|
+ public void test1() {
|
|
14
|
+ // given
|
|
15
|
+ String input = "A";
|
|
16
|
+ String[] expected = {input};
|
|
17
|
+ test(input, expected);
|
|
18
|
+ }
|
|
19
|
+
|
|
20
|
+ @Test
|
|
21
|
+ public void test2() {
|
|
22
|
+ // given
|
|
23
|
+ String input = "B";
|
|
24
|
+ String[] expected = {input};
|
|
25
|
+ test(input, expected);
|
|
26
|
+ }
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+ @Test
|
|
30
|
+ public void test3() {
|
|
31
|
+ // given
|
|
32
|
+ String input = "AB";
|
|
33
|
+ String[] expected = {"A", "B", "AB"};
|
|
34
|
+ test(input, expected);
|
|
35
|
+ }
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+ @Test
|
|
39
|
+ public void test4() {
|
|
40
|
+ // given
|
|
41
|
+ String input = "ABB";
|
|
42
|
+ String[] expected = {"A", "AB", "ABB", "B", "BB"};
|
|
43
|
+ test(input, expected);
|
|
44
|
+ }
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+ @Test
|
|
48
|
+ public void test5() {
|
|
49
|
+ // given
|
|
50
|
+ String input = "AABB";
|
|
51
|
+ String[] expected = {"A", "AA", "AAB", "AABB", "AB", "ABB", "B", "BB"};
|
|
52
|
+ test(input, expected);
|
|
53
|
+ }
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+ @Test
|
|
57
|
+ public void test6() {
|
|
58
|
+ // given
|
|
59
|
+ String input = "AnotherMethodToTest";
|
|
60
|
+ String[] expected = {
|
|
61
|
+ "A", "An", "Ano", "Anot", "Anoth", "Anothe", "Another", "AnotherM", "AnotherMe", "AnotherMet", "AnotherMeth", "AnotherMetho", "AnotherMethod", "AnotherMethodT", "AnotherMethodTo", "AnotherMethodToT", "AnotherMethodToTe", "AnotherMethodToTes", "AnotherMethodToTest",
|
|
62
|
+ "n", "no", "not", "noth", "nothe", "nother", "notherM", "notherMe", "notherMet", "notherMeth", "notherMetho", "notherMethod", "notherMethodT", "notherMethodTo", "notherMethodToT", "notherMethodToTe", "notherMethodToTes", "notherMethodToTest",
|
|
63
|
+ "o", "oT", "oTe", "oTes", "oTest", "od", "odT", "odTo", "odToT", "odToTe", "odToTes", "odToTest", "ot", "oth", "othe", "other", "otherM", "otherMe", "otherMet", "otherMeth", "otherMetho", "otherMethod", "otherMethodT", "otherMethodTo", "otherMethodToT", "otherMethodToTe", "otherMethodToTes", "otherMethodToTest",
|
|
64
|
+ "t", "th", "the", "ther", "therM", "therMe", "therMet", "therMeth", "therMetho", "therMethod", "therMethodT", "therMethodTo", "therMethodToT", "therMethodToTe", "therMethodToTes", "therMethodToTest", "tho", "thod", "thodT", "thodTo", "thodToT", "thodToTe", "thodToTes", "thodToTest",
|
|
65
|
+ "h", "he", "her", "herM", "herMe", "herMet", "herMeth", "herMetho", "herMethod", "herMethodT", "herMethodTo", "herMethodToT", "herMethodToTe", "herMethodToTes", "herMethodToTest", "ho", "hod", "hodT", "hodTo", "hodToT", "hodToTe", "hodToTes", "hodToTest",
|
|
66
|
+ "e", "er", "erM", "erMe", "erMet", "erMeth", "erMetho", "erMethod", "erMethodT", "erMethodTo", "erMethodToT", "erMethodToTe", "erMethodToTes", "erMethodToTest", "es", "est", "et", "eth", "etho", "ethod", "ethodT", "ethodTo", "ethodToT", "ethodToTe", "ethodToTes", "ethodToTest",
|
|
67
|
+ "r", "rM", "rMe", "rMet", "rMeth", "rMetho", "rMethod", "rMethodT", "rMethodTo", "rMethodToT", "rMethodToTe", "rMethodToTes", "rMethodToTest",
|
|
68
|
+ "M", "Me", "Met", "Meth", "Metho", "Method", "MethodT", "MethodTo", "MethodToT", "MethodToTe", "MethodToTes", "MethodToTest",
|
|
69
|
+ "T", "Te", "Tes", "Test", "To", "ToT", "ToTe", "ToTes", "ToTest",
|
|
70
|
+ "d", "dT", "dTo", "dToT", "dToTe", "dToTes", "dToTest",
|
|
71
|
+ "s", "st"};
|
|
72
|
+
|
|
73
|
+ test(input, expected);
|
|
74
|
+ }
|
|
75
|
+
|
|
76
|
+ private void test(String input, String[] expected) {
|
|
77
|
+ // when
|
|
78
|
+ String[] actual = new StringEvaluatorObject(input).getAllPrefixes();
|
|
79
|
+
|
|
80
|
+ // then
|
|
81
|
+ TestUtils.assertArrayEquals(expected, actual);
|
|
82
|
+
|
|
83
|
+ }
|
|
84
|
+}
|