surfire
This commit is contained in:
parent
35c06c2657
commit
437ea7714d
2 changed files with 6 additions and 1 deletions
5
pom.xml
5
pom.xml
|
@ -101,6 +101,11 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-pmd-plugin</artifactId>
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
|
|
|
@ -56,7 +56,7 @@ public class UseCasesIntegrationTest extends GuiIntegrationTest {
|
||||||
new GetInstitution());
|
new GetInstitution());
|
||||||
|
|
||||||
final Result<Institution> result = restService.getBuilder(NewInstitution.class)
|
final Result<Institution> result = restService.getBuilder(NewInstitution.class)
|
||||||
.withQueryParam(Domain.INSTITUTION.ATTR_NAME, "Test Institution")
|
.withFormParam(Domain.INSTITUTION.ATTR_NAME, "Test Institution")
|
||||||
.call();
|
.call();
|
||||||
|
|
||||||
assertNotNull(result);
|
assertNotNull(result);
|
||||||
|
|
Loading…
Reference in a new issue