This commit is contained in:
James Agnew 2016-05-24 13:18:32 -04:00
parent eabf0039ba
commit 9a4612105c
1 changed files with 4 additions and 3 deletions

View File

@ -13,12 +13,13 @@ public class ValidateTest {
@Test @Test
public void testValidateLocalProfile() { public void testValidateLocalProfile() {
String profilePath = ValidateTest.class.getResource("/uslab-patient.profile.xml").getFile(); // String profilePath = ValidateTest.class.getResource("/uslab-patient.profile.xml").getFile();
String resourcePath = ValidateTest.class.getResource("/patient-uslab-example1.xml").getFile(); String resourcePath = ValidateTest.class.getResource("/patient-uslab-example1.xml").getFile();
ourLog.info(profilePath); // ourLog.info(profilePath);
ourLog.info(resourcePath); ourLog.info(resourcePath);
App.main(new String[] {"validate", "-p", "-n", resourcePath, "-l", profilePath}); // App.main(new String[] {"validate", "-p", "-n", resourcePath, "-l", profilePath});
App.main(new String[] {"validate", "-p", "-n", resourcePath});
} }