String username = MSSQLTestUtils.getDBUserName();
String password = MSSQLTestUtils.getDBPassWord();
opts.setUsername(username);
opts.setPassword(password);
opts.setConnectString(getConnectString());
ConnFactory f = new ConnFactory(conf);
try {
this.manager = f.getManager(new JobData(opts, new ImportTool()));
System.out.println("Manger : " + this.manager);
} catch (IOException ioe) {
LOG.error("Setup fail with IOException: " + StringUtils.stringifyException(ioe));
fail("IOException instantiating manager: "
+ StringUtils.stringifyException(ioe));