| Severity | 3 |
|---|---|
| Enabled | yes |
| Waivable | |
| Violation |
ConstructorWithoutSuperRuleViolationTestCase(final Integer initState) {
objState = initState;
}
|
| Fix |
ConstructorWithoutSuperRuleFixTestCase(final Integer initState) {
super();
objState = initState;
}
|