Test of foo method, of class com.sun.enterprise.config.backup.ListManager.
System.out.println("testListManager");
try
{
BackupRequest req = new BackupRequest("C:/tmp/domains", "domain1");
ListManager listMgr = new ListManager(req);
System.out.println(listMgr.list());
}
catch(BackupException be)
{
fail("Got an unexpected BackupException: " + be);
}
catch(Exception e)
{
fail("Got an unexpected BackupException: " + e);
}