Search Gradle plugins

tech.apter.junit5.jupiter.robolectric-extension-gradle-plugin

Owner: Apter

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.

https://github.com/apter-tech/junit5-robolectric-extension

Sources: https://github.com/apter-tech/junit5-robolectric-extension.git

Version 0.6.1 (latest)

Created 15 May 2024.

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.

Using the plugins DSL:

plugins {
  id("tech.apter.junit5.jupiter.robolectric-extension-gradle-plugin") version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tech.apter.junit5.jupiter:robolectric-extension-gradle-plugin:0.6.1")
  }
}

apply(plugin = "tech.apter.junit5.jupiter.robolectric-extension-gradle-plugin")

Using the plugins DSL:

plugins {
  id "tech.apter.junit5.jupiter.robolectric-extension-gradle-plugin" version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tech.apter.junit5.jupiter:robolectric-extension-gradle-plugin:0.6.1"
  }
}

apply plugin: "tech.apter.junit5.jupiter.robolectric-extension-gradle-plugin"

Learn how to apply plugins to subprojects