com.toasttab.testkit.integration.test
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.12 (latest)
0.0.12
Created 18 September 2024.
Tools for running TestKit tests with Jacoco coverage
Using the plugins DSL:
plugins {
id("com.toasttab.testkit.integration.test") version "0.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.toasttab.gradle.testkit:integration-tests:0.0.12")
}
}
apply(plugin = "com.toasttab.testkit.integration.test")
Using the plugins DSL:
plugins {
id "com.toasttab.testkit.integration.test" version "0.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.toasttab.gradle.testkit:integration-tests:0.0.12"
}
}
apply plugin: "com.toasttab.testkit.integration.test"