Test updates to make Jenkins happy

This commit is contained in:
James Agnew 2014-10-29 15:48:05 -04:00
parent 109bbb4a5d
commit d2e6fc2253
3 changed files with 28 additions and 0 deletions

View File

@ -182,6 +182,14 @@
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit_version}</version>
<scope>test</scope>
</dependency>
</dependencies>

View File

@ -0,0 +1,5 @@
As of HAPI 0.8 -
Tests have mostly moved to the hapi-fhir-structures-dstu subproject,
since they depend on that project. There are also tests in other
structures subprojects.

View File

@ -0,0 +1,15 @@
package ca.uhn.fhir.validation;
import org.junit.Test;
public class PlaceholderTest {
/**
* This is just here to make Jenkins happy
*/
@Test
public void testPass() {
// nothing
}
}