hu.advancedweb.scott-plugin-example
Owner: David Csakvari
Scott provides detailed failure messages for tests written in Java, without the use of complex assertion libraries to aid developers in rapid development, troubleshooting and debugging of tests. All information is presented on the source code of the test method as comments.
https://github.com/dodie/scott
Sources: https://github.com/dodie/scott.git
Version 3.4.0 (latest)
3.4.0
Created 04 December 2018.
Scott provides detailed failure messages for tests written in Java, without the use of complex assertion libraries to aid developers in rapid development, troubleshooting and debugging of tests. All information is presented on the source code of the test method as comments.
Using the plugins DSL:
plugins {
id("hu.advancedweb.scott-plugin-example") version "3.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.hu.advanceweb:scott-gradle-plugin:3.4.0")
}
}
apply(plugin = "hu.advancedweb.scott-plugin-example")
Using the plugins DSL:
plugins {
id "hu.advancedweb.scott-plugin-example" version "3.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.hu.advanceweb:scott-gradle-plugin:3.4.0"
}
}
apply plugin: "hu.advancedweb.scott-plugin-example"