/**
  * Tear down.
  *
  * <p>Clear database, close all connections, clear configurations.
  *
  * @throws Exception to JUnit.
  */
 protected void tearDown() throws Exception {
   TestHelper.executeDBScript(TestHelper.SCRIPT_CLEAR);
   TestHelper.closeAllConnections();
   TestHelper.clearAllConfigurations();
 }