Package | Description |
---|---|
net.sourceforge.pmd.lang.java.rule.junit | |
net.sourceforge.pmd.lang.java.rule.migrating |
Modifier and Type | Class and Description |
---|---|
class |
JUnitAssertionsShouldIncludeMessageRule |
class |
JUnitTestsShouldIncludeAssertRule |
class |
TestClassWithoutTestCasesRule |
Modifier and Type | Class and Description |
---|---|
class |
JUnitUseExpectedRule
This rule finds code like this:
public void testFoo() {
try {
doSomething();
fail("should have thrown an exception");
} catch (Exception e) {
}
}
In JUnit 4, use
@Test(expected = Exception.class)
|
Copyright © 2002-2013 InfoEther. All Rights Reserved.