Package org.gradle.api.tasks.testing.testng

Examples of org.gradle.api.tasks.testing.testng.TestNGOptions


    private TestNGDetector detector;
    private final Test testTask;

    public TestNGTestFramework(Test testTask) {
        this.testTask = testTask;
        options = new TestNGOptions(testTask.getProject().getProjectDir());
        options.setAnnotationsOnSourceCompatibility(JavaVersion.toVersion(testTask.getProject().property(
                "sourceCompatibility")));
        detector = new TestNGDetector(testTask.getTestClassesDir(), testTask.getClasspath());
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.tasks.testing.testng.TestNGOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.