for (String res : Arrays.asList("Customer.hbm.xml",
"CustomerContact.hbm.xml",
"CustomerHistory.hbm.xml")) {
config.addFile(new File("src/test/resources/com/mysema/query/jpa/domain5/" + res));
}
HibernateDomainExporter exporter = new HibernateDomainExporter("Q", gen, config);
exporter.execute();
File targetFile = new File(gen, "com/mysema/query/jpa/domain5/QCustomer.java");
assertContains(targetFile, "SetPath<CustomerContact, QCustomerContact>",
"SetPath<CustomerHistory, QCustomerHistory>");