I receive a build exception when attempting to define include and exclude parameters for a custom NUnit task (plugin version 1.8, gradle version 2.12).
No such property: exclude for class: com.ullink.gradle.nunit.NUnit_Decorated
I assume the runner is defaulting to NUnit2Mixins as I'm not specifiying a version or NUNIT_HOME variable.
Example task
task testTask (type: NUnit) {
testAssemblies = ["${buildDir}/tests/TestFramework/SystemTests.dll"]
exclude = 'failures,disabled'
include = 'winners'
}
I receive a build exception when attempting to define include and exclude parameters for a custom NUnit task (plugin version 1.8, gradle version 2.12).
No such property: exclude for class: com.ullink.gradle.nunit.NUnit_Decorated
I assume the runner is defaulting to NUnit2Mixins as I'm not specifiying a version or NUNIT_HOME variable.
Example task