Skip to content

Commit

Permalink
Fix gradle documentation around testing
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Oct 17, 2019
1 parent 958b29f commit 7155a0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/src/main/asciidoc/gradle-tooling.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ Quarkus uses Junit5 and to enable it in Gradle we need to add a section to our b
----
test {
useJUnitPlatform()
exclude '**/Native*'
}
----

Expand All @@ -141,6 +142,7 @@ Using the Kotlin DSL, add:
----
tasks.test {
useJUnitPlatform()
exclude("**/Native*")
}
----

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/kotlin.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ tasks {
tasks.test {
useJUnitPlatform()
exclude '**/Native*'
exclude("**/Native*")
}
allOpen { // <5>
Expand Down

0 comments on commit 7155a0a

Please sign in to comment.