junitstaticsuiteruletest.java

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

JAVA
50
字号
/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html*/package test.net.sourceforge.pmd.rules.junit;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 JUnitStaticSuiteRuleTest extends SimpleAggregatorTst {    private Rule rule;    public void setUp() throws RuleSetNotFoundException {        rule = findRule("rulesets/junit.xml", "JUnitStaticSuite");    }    public void testAll() {       runTests(new TestDescriptor[] {           new TestDescriptor(TEST1, "nonstatic is bad", 1, rule),           new TestDescriptor(TEST2, "public static with no params is OK", 0, rule),           new TestDescriptor(TEST3, "private suite() is bad", 1, rule),           new TestDescriptor(TEST4, "if there are params, just skip it", 0, rule),       });    }    private static final String TEST1 =    "public class Foo {" + PMD.EOL +    " public TestSuite suite() {}" + PMD.EOL +    "}";    private static final String TEST2 =    "public class Foo {" + PMD.EOL +    " public static TestSuite suite() {}" + PMD.EOL +    "}";    private static final String TEST3 =    "public class Foo {" + PMD.EOL +    " private static TestSuite suite() {}" + PMD.EOL +    "}";    private static final String TEST4 =    "public class Foo {" + PMD.EOL +    " protected static Test suite(Foo foo) {}" + PMD.EOL +    "}";}

⌨️ 快捷键说明

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