ER-109 It is good practice to call in any case super() in a constructor. (see also: UnnecessaryConstructorRule )

Severity3
Enabledyes
Waivable
Violation
ConstructorWithoutSuperRuleViolationTestCase(final Integer initState) {
	objState = initState;
}
Fix
ConstructorWithoutSuperRuleFixTestCase(final Integer initState) {
	super();
	objState = initState;
}


Hammurapi 3 Copyright © 2004 Hammurapi Group. All Rights Reserved.