mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
test for IDEA-53184
This commit is contained in:
@@ -59,4 +59,9 @@ class serializableSubclassOfAbstractNoSerializable extends abstractNoSerializabl
|
||||
public static void main(String[] args) {
|
||||
System.out.println(new serializableSubclassOfAbstractNoSerializable().toString());
|
||||
}
|
||||
static {
|
||||
new a();
|
||||
new b();
|
||||
}
|
||||
static final long serialVersionUID = 20130808044800000L;
|
||||
}
|
||||
@@ -142,7 +142,7 @@ public class LightAdvHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
public void testCatchType() { doTest(false, false); }
|
||||
public void testMustBeThrowable() { doTest(false, false); }
|
||||
public void testUnhandledMessingWithFinally() { doTest(false, false); }
|
||||
public void testSerializableStuff() { doTest(true, false); }
|
||||
public void testSerializableStuff() { enableInspectionTool(new UnusedDeclarationInspection()); doTest(true, false); }
|
||||
public void testDeprecated() { doTest(true, false); }
|
||||
public void testJavadoc() { enableInspectionTool(new JavaDocLocalInspection()); doTest(true, false); }
|
||||
public void testExpressionsInSwitch () { doTest(false, false); }
|
||||
|
||||
Reference in New Issue
Block a user