mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-218163 IDEA-CR-50494 Tests for CreateFilePathFix and CreateDirectoryPathFix in Java plugin
GitOrigin-RevId: 26ab3c8980868b3da0e7c1e6ff2e36c4146b838d
This commit is contained in:
committed by
intellij-monorepo-bot
parent
51ecc6e210
commit
95649ee955
+7
@@ -0,0 +1,7 @@
|
||||
package pkg;
|
||||
|
||||
public class ClassWithDirectoryReference {
|
||||
public static void main(String[] args) {
|
||||
String filePath = "/long/<caret>srcdir/path/my.properties";
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package pkg;
|
||||
|
||||
public class TestClassWithDirectoryReference {
|
||||
public static void main(String[] args) {
|
||||
String filePath = "/long/<caret>testdir/path/my-test.properties";
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package pkg;
|
||||
|
||||
public class ClassWithFileReference {
|
||||
public static void main(String[] args) {
|
||||
String filePath = "/pkg/<caret>my.properties";
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package pkg;
|
||||
|
||||
public class ClassWithLongFileReference {
|
||||
public static void main(String[] args) {
|
||||
String filePath = "/long/path/source/<caret>my.properties";
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package pkg;
|
||||
|
||||
public class TestClassWithFileReference {
|
||||
public static void main(String[] args) {
|
||||
String filePath = "/pkg/<caret>my-test.properties";
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package pkg;
|
||||
|
||||
public class TestClassWithLongFileReference {
|
||||
public static void main(String[] args) {
|
||||
String filePath = "/long/path/source/<caret>my-test.properties";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user