mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 13:31:28 +07:00
middle-matching-agnostic tests
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
enum Setup {
|
||||
NO_CONNECTION,
|
||||
NONE,
|
||||
CONNECTION
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
enum Setup {
|
||||
NO_CONNECTION,
|
||||
NONE,
|
||||
CONNECTION
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
interface Intf { Intf FOO = null; }
|
||||
interface Intf2 extends Intf { Intf2 FOO = null; }
|
||||
interface Intf { Intf XFOO = null; }
|
||||
interface Intf2 extends Intf { Intf2 XFOO = null; }
|
||||
|
||||
public class Bar implements Intf2 {
|
||||
public static void fpp() {
|
||||
F<caret>
|
||||
XF<caret>x
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import static Super.FOO;
|
||||
import static Super.XFOO;
|
||||
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
public static final Super FOX = true;
|
||||
public static final Super XFOO = null;
|
||||
public static final Super XFOX = true;
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
Super s = FO<caret>
|
||||
Super s = XFO<caret>
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -565,7 +565,7 @@ public class ListUtils {
|
||||
|
||||
public void testDoubleConstant() throws Throwable {
|
||||
configure()
|
||||
assertStringItems("FOO", "Float")
|
||||
assertStringItems("XFOO")
|
||||
}
|
||||
|
||||
public void testNotOnlyKeywordsInsideSwitch() throws Throwable {
|
||||
@@ -993,7 +993,7 @@ public class ListUtils {
|
||||
|
||||
public void testExpectedTypeMembersVersusStaticImports() throws Throwable {
|
||||
configure()
|
||||
assertStringItems('FOO', 'FOX')
|
||||
assertStringItems('XFOO', 'XFOX')
|
||||
}
|
||||
|
||||
public void testDoubleExpectedTypeFactoryMethod() throws Throwable {
|
||||
|
||||
@@ -9,5 +9,5 @@ class Leaf extends Tree {
|
||||
|
||||
@Newify([Tree, Leaf])
|
||||
buildTree() {
|
||||
Tree(Tree(Leaf(1), Leaf(2)), Le<caret>)
|
||||
Tree(Tree(Leaf(1), Leaf(2)), Lea<caret>)
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
Tes<caret>
|
||||
class MyTest {
|
||||
MyTes<caret>
|
||||
}
|
||||
-----
|
||||
Test
|
||||
MyTest
|
||||
Reference in New Issue
Block a user