Files
openide/java/java-tests/testData/inspection/explicitToImplicitClassMigration/beforeTestClass.java
Mikhail Pyltsin d186699847 [java-inspection] IDEA-355916 update implicit<->explicit classes inspections
- tests
- optimize imports
- ReplaceOnDemandImportIntention supports module imports

GitOrigin-RevId: 228135179fc26f44064dd196ae70326fd91fb3ee
2024-07-26 12:44:48 +00:00

15 lines
263 B
Java

import org.<error descr="Cannot resolve symbol 'junit'">junit</error>.jupiter.api.Test;
public class EmptyTest<caret>
{
public static void main(String[] args) {
}
@<error descr="Cannot resolve symbol 'Test'">Test</error>
public void test1() {
}
}