• Home
Name Date Size #Lines LOC

..--

gradle/wrapper/04-Jul-2025-87

java8Test/04-Jul-2025-3628

jpmsTest/04-Jul-2025-11071

smokeTest/04-Jul-2025-10090

src/04-Jul-2025-379297

.gitignoreD04-Jul-202523 22

README.mdD04-Jul-20251.2 KiB1813

build.gradleD04-Jul-20256.7 KiB190161

gradle.propertiesD04-Jul-2025154 86

gradlewD04-Jul-20258.6 KiB253105

gradlew.batD04-Jul-20252.8 KiB9573

settings.gradleD04-Jul-2025346 1512

README.md

1# Integration tests
2
3This is a supplementary project that provides integration tests.
4
5The tests are the following:
6* `mavenTest` depends on the published artifacts and tests artifacts binary content for absence of atomicfu in the classpath.
7* `jvmCoreTest` miscellaneous tests that check the behaviour of `kotlinx-coroutines-core` dependency in a smoke manner.
8* `coreAgentTest` checks that `kotlinx-coroutines-core` can be run as a Java agent.
9* `debugAgentTest` checks that the coroutine debugger can be run as a Java agent.
10* `debugDynamicAgentTest` checks that `kotlinx-coroutines-debug` agent can self-attach dynamically to JVM as a standalone dependency.
11* `debugDynamicAgentJpmsTest` checks that `kotlinx-coroutines-debug` agent can self-attach dynamically to JVM as a standalone dependency  (with JPMS)
12* `smokeTest` builds the multiplatform test project that depends on coroutines.
13* `java8Test` checks that some APIs built with Java 9+ can be used with Java 8.
14
15The `integration-testing` project is expected to be in a subdirectory of the main `kotlinx.coroutines` project.
16
17To run all the available tests: `./gradlew publishToMavenLocal` + `cd integration-testing` + `./gradlew check`.
18