mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
[mod-commands] Testing: declarative testing of multi-step actions
GitOrigin-RevId: d8c195494ae7973a44c1daf707fc38e6f76a7191
This commit is contained in:
committed by
intellij-monorepo-bot
parent
be9a7b3ed9
commit
9ab2a2cd01
@@ -1,4 +1,4 @@
|
||||
// "Replace static import with qualified access to Arrays" "true-preview"
|
||||
// "Replace static import with qualified access to Arrays|->Replace this occurrence and keep the import" "true-preview"
|
||||
import java.util.Arrays;
|
||||
|
||||
import static java.util.Arrays.*;
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace static import with qualified access to Arrays" "true-preview"
|
||||
// "Replace static import with qualified access to Arrays|->Replace all and delete the import" "true-preview"
|
||||
import java.util.Arrays;
|
||||
|
||||
class Test {
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Replace static import with qualified access to Arrays|->Replace this occurrence and keep the import" "true-preview"
|
||||
import static java.util.Arrays.*;
|
||||
|
||||
class Test {
|
||||
public void sendMessage(String... destinationAddressNames) {
|
||||
s<caret>ort(destinationAddressNames);
|
||||
asList(destinationAddressNames)
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace static import with qualified access to Arrays" "true-preview"
|
||||
// "Replace static import with qualified access to Arrays|->Replace all and delete the import" "true-preview"
|
||||
import static java.util.Arrays.*;
|
||||
|
||||
class Test {
|
||||
|
||||
Reference in New Issue
Block a user