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

Examples of org.gradle.api.internal.tasks.testing.testng.TestNGTestFramework


     *
     * @param testFrameworkConfigure A closure used to configure the JUint options. This closure is passed an instance
     * of type {@link org.gradle.api.tasks.testing.junit.JUnitOptions}.
     */
    public TestFramework useTestNG(Closure testFrameworkConfigure) {
        return useTestFramework(new TestNGTestFramework(this), testFrameworkConfigure);
    }
View Full Code Here


     * org.gradle.api.tasks.testing.testng.TestNGOptions}, which can be used to configure how TestNG runs.
     *
     * @param testFrameworkConfigure A closure used to configure the TestNG options.
     */
    public void useTestNG(Closure testFrameworkConfigure) {
        useTestFramework(new TestNGTestFramework(this, this.filter, getInstantiator()), testFrameworkConfigure);
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.tasks.testing.testng.TestNGTestFramework

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.