We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b727b commit f12a650Copy full SHA for f12a650
dokka-aws/src/test/kotlin/aws/sdk/kotlin/dokka/DokkaAwsTest.kt
@@ -5,16 +5,18 @@
5
package aws.sdk.kotlin.dokka
6
7
import org.jsoup.Jsoup
8
-import org.junit.jupiter.api.AfterEach
+import org.junit.jupiter.api.AfterAll
9
import org.junit.jupiter.api.Assumptions.assumeTrue
10
import org.junit.jupiter.api.Test
11
+import org.junit.jupiter.api.TestInstance
12
import java.io.File
13
import kotlin.test.assertTrue
14
15
+@TestInstance(TestInstance.Lifecycle.PER_CLASS)
16
class DokkaAwsTest {
17
val dokkaOutputDir = File("build/dokka")
18
- @AfterEach
19
+ @AfterAll
20
fun cleanup() {
21
if (dokkaOutputDir.exists()) {
22
try {
0 commit comments