rift-java-junit5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.achird-labs</groupId>
<artifactId>rift-java-junit5</artifactId>
<version>0.2.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.achird-labs</groupId>
<artifactId>rift-java-parent</artifactId>
<version>0.2.3</version>
</parent>
<artifactId>rift-java-junit5</artifactId>
<name>rift-java-junit5</name>
<description>JUnit 5 extension for rift-java: @RiftTest engine scoping and imposter injection.</description>
<url>https://github.com/achird-labs/rift-java</url>
<dependencies>
<dependency>
<groupId>io.github.achird-labs</groupId>
<artifactId>rift-java-core</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<!-- Drives the deliberately-failing dumpRecordedOnFailure fixtures in-process so they don't
fail the suite (asserts the published report entries). Version via the parent junit-bom. -->
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-testkit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- These "IT" fixtures (RiftExtensionIT, RiftResetIT) are portable, in-process tests
against FakeRiftAdmin — no native engine required — so they run in the ordinary
`test` phase alongside the *Test classes, rather than being reserved for failsafe's
`verify` phase (this module has no failsafe binding). -->
<includes>
<include>**/*Test.java</include>
<include>**/*Tests.java</include>
<include>**/*IT.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>