File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
jOOR/src/test/java/org/joor/test Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 42
42
import static org .junit .Assert .assertNull ;
43
43
import static org .junit .Assert .assertThat ;
44
44
import static org .junit .Assert .fail ;
45
+ import static org .junit .Assume .assumeTrue ;
45
46
46
47
import java .util .HashMap ;
47
48
import java .util .Map ;
@@ -93,8 +94,11 @@ public void testPrivateConstructor() {
93
94
assertEquals ("abc" , on (PrivateConstructors .class ).create ("abc" ).get ("string" ));
94
95
}
95
96
96
- // [#5] Re-enact when this is implemented @Test
97
+ @ Test
97
98
public void testConstructorsWithAmbiguity () {
99
+ // [#5] Re-enact when this is implemented
100
+ assumeTrue (false );
101
+
98
102
Test2 test ;
99
103
100
104
test = on (Test2 .class ).create ().get ();
@@ -187,8 +191,11 @@ public void testPrivateMethodsAreFoundOnDeclaringClass() throws Exception {
187
191
assertEquals (TestHierarchicalMethodsBase .PRIVATE_RESULT , on (baseClass ).call ("priv_method" , 1 ).get ());
188
192
}
189
193
190
- // [#5] Re-enact when this is implemented @Test
194
+ @ Test
191
195
public void testMethodsWithAmbiguity () {
196
+ // [#5] Re-enact when this is implemented
197
+ assumeTrue (false );
198
+
192
199
Test3 test ;
193
200
194
201
test = on (Test3 .class ).create ().call ("method" ).get ();
You can’t perform that action at this time.
0 commit comments