Create simple integration test for digester process.

Much of this lived in the separate testapp, but we can exercise a lot of the
code as an integration test in the main project, so let's do so.
This commit is contained in:
Michael Bayne
2018-09-05 15:36:28 -07:00
parent 4537401d09
commit cc8ed1cd3a
9 changed files with 128 additions and 0 deletions
+42
View File
@@ -34,6 +34,48 @@
<includes><include>LICENSE</include></includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>add-test-source</id>
<phase>process-resources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>src/it/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.15</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
<execution>
<id>verify</id>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>