-
Notifications
You must be signed in to change notification settings - Fork 20
Home
John Burns edited this page Nov 20, 2025
·
12 revisions
Classes specific to testing a Gradle project, leveraging Spock.
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation 'com.netflix.nebula:nebula-test:latest.release'
}
This library provides spock base classes which can be extended to run certain types of tests without boilerplate. See the "Types of Tests" section in the sidebar for more information on these.
This library also provides a fluent builder (aka DSL) for TestKit project-based tests. See TestKit DSL for more information.
This project integrates with ArchRules by providing rules. In order to see the evaluation of these rules in your project, apply the ArchRule Runner plugin.