SMILE-3459 Removed failing test that I added.

This commit is contained in:
kylejule 2022-09-01 14:12:50 -06:00
parent adc56dea65
commit d11abc7ad5
1 changed files with 0 additions and 14 deletions

View File

@ -34,18 +34,4 @@ public class ValidateCommandTest {
"-p",
"-n", resourcePath});
}
@Test
public void testValidateLocalProfileAndResourceR4() {
String patientJson = ValidateCommandTest.class.getResource("/validate/Patient.json").getFile();
String patientProfile = ValidateCommandTest.class.getResource("/validate/PatientIn-Profil.json").getFile();
ourLog.info(patientJson);
App.main(new String[] {
"validate",
"--fhir-version", "r4",
"--profile",
"--file", patientJson,
"-l", patientProfile});
}
}