From fca27830aa3b8da4b0e465375c4190c80efd8618 Mon Sep 17 00:00:00 2001 From: Bas Leijdekkers Date: Fri, 29 Nov 2013 11:16:40 +0100 Subject: [PATCH] remove obsolete test --- .../errorhandling/EmptyCatchBlockInspectionTest.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/plugins/InspectionGadgets/testsrc/com/siyeh/ig/errorhandling/EmptyCatchBlockInspectionTest.java b/plugins/InspectionGadgets/testsrc/com/siyeh/ig/errorhandling/EmptyCatchBlockInspectionTest.java index 7e64784ce666..72529cea2a38 100644 --- a/plugins/InspectionGadgets/testsrc/com/siyeh/ig/errorhandling/EmptyCatchBlockInspectionTest.java +++ b/plugins/InspectionGadgets/testsrc/com/siyeh/ig/errorhandling/EmptyCatchBlockInspectionTest.java @@ -66,15 +66,4 @@ public class EmptyCatchBlockInspectionTest extends LightInspectionTestCase { " }\n" + "}\n"); } - - public void testTest() { - doTest("import junit.framework.TestCase;\n" + - "class C extends TestCase {\n" + - " public void testM() {\n" + - " try {\n" + - " throw new Exception();\n" + - " } catch (Exception e) {}\n" + - " }\n" + - "}\n"); - } }