base-test
base-test copied to clipboard
Automated testing of Java classes via reflections
## Situation There are two classes that extend each other. The methods `hashCode()` and `equals()` were both generated by Eclipse. ```java public class Parent { int foo; @Override public int...
Sometimes when executing checks certain variables are ignored. For example in the getterIsSetterCheck when there is no setter for a getter, this getter will be ignored and the test will...
Correctly the singleThreadExecuter executes all test in a row. Errors are displayed above the final result and thus it might be unclear what actually failed the specific test. Collect the...
Sometimes there might not be a pair of getter and setter for a hidden variable. Implement separate checks for getter and setter. Work with reflections to view/edit internal variables
Sonar reports incomplete test coverage if @EqualsAndHashcode annotation in Lombok is used