/**
  * <b>Note</b> the timeout is quite long for this. The loadDictionary method normally takes about
  * 3 seconds when logging output to a file, but if logging to the console takes significantly
  * longer i.e. > 10 seconds!
  *
  * @throws IOException
  * @throws InvalidWordException
  * @throws MalformedInputException
  */
 @Test(timeout = 20000L)
 public void testLoadDictionary()
     throws IOException, InvalidWordException, MalformedInputException {
   classUnderTest.loadDictionary();
 }