unittest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.cormoran-io.pepper</groupId>
<artifactId>unittest</artifactId>
<version>1.24</version>
</dependency><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>com.github.cormoran-io.pepper</groupId> <artifactId>pepper-parent</artifactId> <version>1.24</version> </parent> <artifactId>unittest</artifactId> <packaging>jar</packaging> <properties> <jacoco.instruction.ratio>0.50</jacoco.instruction.ratio> <jacoco.branch.ratio>0.35</jacoco.branch.ratio> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/junit/junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <!-- This is a module helping unit-tests: its dependencies are strong dependencies --> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <!-- This is a module helping unit-tests: its dependencies are strong dependencies --> <scope>compile</scope> </dependency> </dependencies> </project>