Skip to content

Commit 83eb7ea

Browse files
committed
Core package tests
1 parent bfbb33e commit 83eb7ea

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

kotlinx-coroutines-core/jvm/test/AtomicCancellationTest.kt renamed to kotlinx-coroutines-core/concurrent/test/AtomicCancellationTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package kotlinx.coroutines
@@ -142,4 +142,4 @@ class AtomicCancellationTest : TestBase() {
142142
yield() // to jobToJoin & canceller
143143
expect(6)
144144
}
145-
}
145+
}

kotlinx-coroutines-core/jvm/test/JobStructuredJoinStressTest.kt renamed to kotlinx-coroutines-core/concurrent/test/JobStructuredJoinStressTest.kt

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
/*
2-
* Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5-
package kotlinx.coroutines
6-
7-
import org.junit.*
5+
import kotlinx.coroutines.*
6+
import kotlin.test.*
87
import kotlin.coroutines.*
98

109
/**
@@ -61,4 +60,4 @@ class JobStructuredJoinStressTest : TestBase() {
6160
}
6261
finish(2 + nRepeats)
6362
}
64-
}
63+
}

0 commit comments

Comments
 (0)