| Because the BaseUnitTestCase Logger is private static final, we have to declare it everytime we extend this class. However, if we do it like this:
protected Logger log = Logger.getLogger( getClass() );
We can use it in every subclass without having to declare it. |