⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 closeconnectionruletest.java

📁 检查Java程序漏洞
💻 JAVA
字号:
/** * 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.rules.CloseConnectionRule;import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;import test.net.sourceforge.pmd.testframework.TestDescriptor;public class CloseConnectionRuleTest extends SimpleAggregatorTst  {    public void testAll() {       runTests(new TestDescriptor[] {           new TestDescriptor(TEST1, "connection is closed, ok", 0, new CloseConnectionRule()),           new TestDescriptor(TEST2, "connection not closed, should have failed", 1, new CloseConnectionRule()),       });    }    private static final String TEST1 =    "public class Foo {" + PMD.EOL +    " void bar() {" + PMD.EOL +    "  Connection c = pool.getConnection();" + PMD.EOL +    "  try {" + PMD.EOL +    "  } catch (Exception e) {" + PMD.EOL +    "  } finally {" + PMD.EOL +    "   c.close();" + PMD.EOL +    "  }" + PMD.EOL +    " }" + PMD.EOL +    "}";    private static final String TEST2 =    "public class Foo {" + PMD.EOL +    " void bar() {" + PMD.EOL +    "  Connection c = pool.getConnection();" + PMD.EOL +    "  try {" + PMD.EOL +    "  } catch (Exception e) {" + PMD.EOL +    "  }" + PMD.EOL +    " }" + PMD.EOL +    "}";}

⌨️ 快捷键说明

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