emptyfinallyblockruletest.java

来自「检查Java程序漏洞」· Java 代码 · 共 66 行

JAVA
66
字号
/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html*/package test.net.sourceforge.pmd.rules;import net.sourceforge.pmd.PMD;import net.sourceforge.pmd.Rule;import net.sourceforge.pmd.RuleSetNotFoundException;import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;import test.net.sourceforge.pmd.testframework.TestDescriptor;public class EmptyFinallyBlockRuleTest extends SimpleAggregatorTst {    private Rule rule;    public void setUp() throws RuleSetNotFoundException {        rule = findRule("rulesets/basic.xml", "EmptyFinallyBlock");    }    public void testAll() {       runTests(new TestDescriptor[] {           new TestDescriptor(TEST1, "", 1, rule),           new TestDescriptor(TEST2, "", 1, rule),           new TestDescriptor(TEST3, "", 0, rule),           new TestDescriptor(TEST4, "multiple catch blocks with finally", 1, rule),       });    }    private static final String TEST1 =    "public class EmptyFinallyBlock1 {" + PMD.EOL +    "    public void foo() {" + PMD.EOL +    "       try {" + PMD.EOL +    "       } catch (Exception e) {} finally {}" + PMD.EOL +    "    }" + PMD.EOL +    "}";    private static final String TEST2 =    "public class EmptyFinallyBlock2 {" + PMD.EOL +    "    public void foo() {" + PMD.EOL +    "       try {" + PMD.EOL +    "       } finally {}" + PMD.EOL +    "    }" + PMD.EOL +    "}";    private static final String TEST3 =    "public class EmptyFinallyBlock3 {" + PMD.EOL +    "    public void foo() {" + PMD.EOL +    "       try {" + PMD.EOL +    "       } finally {int x =2;}" + PMD.EOL +    "    }" + PMD.EOL +    "}";    private static final String TEST4 =    "public class EmptyFinallyBlock4 {" + PMD.EOL +    " public void foo() {" + PMD.EOL +    "  try {" + PMD.EOL +    "  } catch (IOException e ){" + PMD.EOL +    "  } catch (Exception e ) {" + PMD.EOL +    "  } catch (Throwable t ) {" + PMD.EOL +    "  } finally{" + PMD.EOL +    "  }" + PMD.EOL +    " }" + PMD.EOL +    "}";}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?