com.ullink.gradle.nunit.NUnitPlugin.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-nunit-plugin Show documentation
Show all versions of gradle-nunit-plugin Show documentation
gradle-nunit-plugin is a Gradle plugin that enables NUnit testing
package com.ullink.gradle.nunit
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.Task
class NUnitPlugin implements Plugin {
void apply(Project project) {
project.apply plugin: 'nunit-base'
Task defaultNUnitTask = project.task('nunit', type: NUnit)
defaultNUnitTask.description = 'Executes NUnit tests'
}
}