|
23 | 23 | */ |
24 | 24 | public class BasicParserTest extends ParserTestCase |
25 | 25 | { |
| 26 | + @Override |
26 | 27 | public void setUp() |
27 | 28 | { |
28 | 29 | super.setUp(); |
29 | 30 | parser = new BasicParser(); |
30 | 31 | } |
31 | 32 |
|
| 33 | + @Override |
32 | 34 | public void testDoubleDash2() throws Exception |
33 | 35 | { |
34 | 36 | // not supported by the BasicParser |
35 | 37 | } |
36 | 38 |
|
| 39 | + @Override |
37 | 40 | public void testLongWithoutEqualSingleDash() throws Exception |
38 | 41 | { |
39 | 42 | // not supported by the BasicParser |
40 | 43 | } |
41 | 44 |
|
| 45 | + @Override |
42 | 46 | public void testAmbiguousLongWithoutEqualSingleDash() throws Exception |
43 | 47 | { |
44 | 48 | // not supported by the basicParser |
45 | 49 | } |
46 | 50 |
|
| 51 | + @Override |
47 | 52 | public void testNegativeOption() throws Exception |
48 | 53 | { |
49 | 54 | // not supported by the BasicParser (CLI-184) |
50 | 55 | } |
51 | 56 |
|
| 57 | + @Override |
52 | 58 | public void testPropertiesOption1() throws Exception |
53 | 59 | { |
54 | 60 | // not supported by the BasicParser |
55 | 61 | } |
56 | 62 |
|
| 63 | + @Override |
57 | 64 | public void testPropertiesOption2() throws Exception |
58 | 65 | { |
59 | 66 | // not supported by the BasicParser |
60 | 67 | } |
61 | 68 |
|
| 69 | + @Override |
62 | 70 | public void testShortWithEqual() throws Exception |
63 | 71 | { |
64 | 72 | // not supported by the BasicParser |
65 | 73 | } |
66 | 74 |
|
| 75 | + @Override |
67 | 76 | public void testShortWithoutEqual() throws Exception |
68 | 77 | { |
69 | 78 | // not supported by the BasicParser |
70 | 79 | } |
71 | 80 |
|
| 81 | + @Override |
72 | 82 | public void testLongWithEqualDoubleDash() throws Exception |
73 | 83 | { |
74 | 84 | // not supported by the BasicParser |
75 | 85 | } |
76 | 86 |
|
| 87 | + @Override |
77 | 88 | public void testLongWithEqualSingleDash() throws Exception |
78 | 89 | { |
79 | 90 | // not supported by the BasicParser |
80 | 91 | } |
81 | 92 |
|
| 93 | + @Override |
82 | 94 | public void testUnambiguousPartialLongOption1() throws Exception |
83 | 95 | { |
84 | 96 | // not supported by the BasicParser |
85 | 97 | } |
86 | 98 |
|
| 99 | + @Override |
87 | 100 | public void testUnambiguousPartialLongOption2() throws Exception |
88 | 101 | { |
89 | 102 | // not supported by the BasicParser |
90 | 103 | } |
91 | 104 |
|
| 105 | + @Override |
92 | 106 | public void testUnambiguousPartialLongOption3() throws Exception |
93 | 107 | { |
94 | 108 | // not supported by the BasicParser |
95 | 109 | } |
96 | 110 |
|
| 111 | + @Override |
97 | 112 | public void testUnambiguousPartialLongOption4() throws Exception |
98 | 113 | { |
99 | 114 | // not supported by the BasicParser |
100 | 115 | } |
101 | 116 |
|
| 117 | + @Override |
102 | 118 | public void testAmbiguousPartialLongOption1() throws Exception |
103 | 119 | { |
104 | 120 | // not supported by the BasicParser |
105 | 121 | } |
106 | 122 |
|
| 123 | + @Override |
107 | 124 | public void testAmbiguousPartialLongOption2() throws Exception |
108 | 125 | { |
109 | 126 | // not supported by the BasicParser |
110 | 127 | } |
111 | 128 |
|
| 129 | + @Override |
112 | 130 | public void testAmbiguousPartialLongOption3() throws Exception |
113 | 131 | { |
114 | 132 | // not supported by the BasicParser |
115 | 133 | } |
116 | 134 |
|
| 135 | + @Override |
117 | 136 | public void testAmbiguousPartialLongOption4() throws Exception |
118 | 137 | { |
119 | 138 | // not supported by the BasicParser |
120 | 139 | } |
121 | 140 |
|
| 141 | + @Override |
122 | 142 | public void testPartialLongOptionSingleDash() throws Exception |
123 | 143 | { |
124 | 144 | // not supported by the BasicParser |
125 | 145 | } |
126 | 146 |
|
| 147 | + @Override |
127 | 148 | public void testBursting() throws Exception |
128 | 149 | { |
129 | 150 | // not supported by the BasicParser |
130 | 151 | } |
131 | 152 |
|
| 153 | + @Override |
132 | 154 | public void testUnrecognizedOptionWithBursting() throws Exception |
133 | 155 | { |
134 | 156 | // not supported by the BasicParser |
135 | 157 | } |
136 | 158 |
|
| 159 | + @Override |
137 | 160 | public void testMissingArgWithBursting() throws Exception |
138 | 161 | { |
139 | 162 | // not supported by the BasicParser |
140 | 163 | } |
141 | 164 |
|
| 165 | + @Override |
142 | 166 | public void testStopBursting() throws Exception |
143 | 167 | { |
144 | 168 | // not supported by the BasicParser |
145 | 169 | } |
146 | 170 |
|
| 171 | + @Override |
147 | 172 | public void testStopBursting2() throws Exception |
148 | 173 | { |
149 | 174 | // not supported by the BasicParser |
|
0 commit comments