public void startApplication() {
// load the application
ctx = new ClassPathXmlApplicationContext("/tatool/test-application-context.xml");
// make sure the data directory is relative
UserAccountServiceImpl userAccountService = (UserAccountServiceImpl) getUserAccountService();
userAccountService.setRelativeToHome(false);
userAccountService.setDataDirName(dataDirName);
}