JUnit: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:
* https://www.infoq.com/presentations/junit-5-demo
* https://www.infoq.com/presentations/junit-5-demo
* Latest JUnit 4 version: https://junit.org/junit4/
* Latest JUnit 4 version: https://junit.org/junit4/
* https://junit.org/junit4/javadoc/latest/


=Internal=
=Internal=

Revision as of 18:36, 11 April 2021

External

Internal

Overview

Dependencies

dependencies {
    testImplementation "junit:junit:4.12"
}

JUnit and Gradle

The only configuration required to enable unit testing in a Gradle project is to apply the Java plugin and declared JUnit as testImplementation:

apply plugin: 'java'

repositories {
    mavenCentral()
}

dependencies {
    ...
    testImplementation "junit:junit:4.12"
}

This will allow to declare @Test methods and will enable result parsing to generate HTML reports.

Passing System Properties to Tests

See:

Gradle Java Plugin - Passing System Properties to Tests

Concepts

Test Runner

A JUnit plugin that provides custom testing behavior. Specified with @RunWith.

Annotations

Patterns