You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Gradle plugin that allows for the execution of [JUnit Framework][junit-framework-github] tests in Android environments using **Android Gradle Plugin 8.2 or later.**
16
+
A Gradle plugin that allows for the execution of [JUnit][junit-github] 5+ tests in Android environments using **Android Gradle Plugin 8.2 or later.**
17
17
18
18
## How?
19
19
20
20
This plugin configures the unit test tasks for each build variant of a project to run on the JUnit Platform.
21
21
Furthermore, it provides additional configuration options for these tests [through a DSL][wiki-dsl]
22
-
and facilitates the usage of JUnit Framework for instrumentation tests.
22
+
and facilitates the usage JUnit for instrumentation tests.
23
23
24
-
Instructions on how to write tests with the JUnit Framework can be found [in their User Guide][junit-framework-guide].
24
+
Instructions on how to write tests with modern JUnit can be found [in their User Guide][junit-guide].
25
25
To get a first look at its features, a small showcase project can be found [here][sampletests].
26
26
27
27
## Setup
@@ -32,17 +32,17 @@ Snapshots of the development version are available through [Sonatype's `snapshot
32
32
```kotlin
33
33
plugins {
34
34
// 1. Apply the plugin
35
-
id("de.mannodermaus.android-junit5") version "1.14.0.0"
35
+
id("de.mannodermaus.android-junit") version "2.0.0"
36
36
}
37
37
38
38
dependencies {
39
-
// 2. Add JUnit Framework BOM and the required dependencies
A Gradle plugin that allows for the execution of [JUnit Framework][junit-framework-github] tests in Android environments using **Android Gradle Plugin ${constants.minimumRequiredAgpVersion} or later.**
11
+
A Gradle plugin that allows for the execution of [JUnit][junit-github] 5+ tests in Android environments using **Android Gradle Plugin ${constants.minimumRequiredAgpVersion} or later.**
12
12
13
13
## How?
14
14
15
15
This plugin configures the unit test tasks for each build variant of a project to run on the JUnit Platform.
16
16
Furthermore, it provides additional configuration options for these tests [through a DSL][wiki-dsl]
17
-
and facilitates the usage of JUnit Framework for instrumentation tests.
17
+
and facilitates the usage JUnit for instrumentation tests.
18
18
19
-
Instructions on how to write tests with the JUnit Framework can be found [in their User Guide][junit-framework-guide].
19
+
Instructions on how to write tests with modern JUnit can be found [in their User Guide][junit-guide].
20
20
To get a first look at its features, a small showcase project can be found [here][sampletests].
21
21
22
22
## Setup
@@ -27,17 +27,17 @@ Snapshots of the development version are available through [Sonatype's `snapshot
27
27
```kotlin
28
28
plugins {
29
29
// 1. Apply the plugin
30
-
id("de.mannodermaus.android-junit5") version "${pluginVersion}"
30
+
id("de.mannodermaus.android-junit") version "${pluginVersion}"
31
31
}
32
32
33
33
dependencies {
34
-
// 2. Add JUnit Framework BOM and the required dependencies
0 commit comments