com.toasttab.testkit.coverage
Owner: Oleg Golberg
Tools for running TestKit tests with Jacoco coverage
https://github.com/open-toast/testkit-plugins
Sources: https://github.com/open-toast/testkit-plugins
Version 0.0.13 (latest)
0.0.13
Created 26 September 2024.
Tools for running TestKit tests with Jacoco coverage
Using the plugins DSL:
plugins {
id("com.toasttab.testkit.coverage") version "0.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.toasttab.gradle.testkit:coverage-plugin:0.0.13")
}
}
apply(plugin = "com.toasttab.testkit.coverage")
Using the plugins DSL:
plugins {
id "com.toasttab.testkit.coverage" version "0.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.toasttab.gradle.testkit:coverage-plugin:0.0.13"
}
}
apply plugin: "com.toasttab.testkit.coverage"