All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.tech.apter.junit.jupiter.robolectric.internal.JUnit5RobolectricAndroidSandbox.kt Maven / Gradle / Ivy

Go to download

This repository aims to bridge the gap between JUnit 5 and Robolectric, enabling developers to leverage the benefits of both frameworks for unit testing Android applications. While Robolectric currently lacks a dedicated JUnit 5 extension, this project proposes a community-driven solution to achieve seamless integration.

The newest version!
package tech.apter.junit.jupiter.robolectric.internal

import org.robolectric.ApkLoader
import org.robolectric.annotation.SQLiteMode
import org.robolectric.internal.AndroidSandbox
import org.robolectric.internal.ResourcesMode
import org.robolectric.internal.bytecode.ShadowProviders
import org.robolectric.pluginapi.Sdk
import java.util.concurrent.ThreadFactory
import java.util.concurrent.atomic.AtomicLong

@Suppress("LongParameterList")
internal class JUnit5RobolectricAndroidSandbox(
    runtimeSdk: Sdk,
    compileSdk: Sdk,
    resourcesMode: ResourcesMode,
    apkLoader: ApkLoader,
    @Suppress("VisibleForTests")
    testEnvironmentSpec: TestEnvironmentSpec,
    sdkSandboxClassLoader: SdkSandboxClassLoader,
    shadowProviders: ShadowProviders,
    sqLiteMode: SQLiteMode.Mode,
) : AndroidSandbox(
    runtimeSdk,
    compileSdk,
    resourcesMode,
    apkLoader,
    testEnvironmentSpec,
    sdkSandboxClassLoader,
    shadowProviders,
    sqLiteMode,
) {
    override fun mainThreadFactory(): ThreadFactory {
        return ThreadFactory { r: Runnable ->
            val name = "SDK ${sdk.apiLevel}"
            Thread(ThreadGroup(name), r, "$name Main Thread ${createThreadId()}")
        }
    }

    private companion object {
        // AtomicLong is used here for safe and efficient ID generation across multiple threads.
        private val threadIds = AtomicLong(1)
        private fun createThreadId(): Long = threadIds.getAndIncrement()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy