• Home
Name Date Size #Lines LOC

..--

gradle/wrapper/06-Sep-2024-65

smokeTest/06-Sep-2024-7764

src/06-Sep-2024-406292

README.mdD06-Sep-2024968 1611

build.gradleD06-Sep-20246.3 KiB182155

gradle.propertiesD06-Sep-2024133 75

gradlewD06-Sep-20247.9 KiB23598

gradlew.batD06-Sep-20242.6 KiB9068

settings.gradleD06-Sep-2024305 1310

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* `smokeTest` builds the multiplatform test project that depends on coroutines.
12
13The `integration-testing` project is expected to be in a subdirectory of the main `kotlinx.coroutines` project.
14
15To run all the available tests: `./gradlew publishToMavenLocal` + `cd integration-testing` + `./gradlew check`.
16