Tag Archives: mockito

Testing Abstract Classes With Mockito and JUnit

Often times in Java, you have an abstract parent class which has some concrete methods which call abstract methods which will be implemented by the child classes. So what’s an easy way to test this sort of pattern? A mock … Continue reading

Posted in General, Java, Software Engineering | Tagged Java, junit, mockito, testing | Leave a comment