Test updates to make Jenkins happy
This commit is contained in:
parent
109bbb4a5d
commit
d2e6fc2253
|
@ -182,6 +182,14 @@
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Testing -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>${junit_version}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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.
|
|
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue