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

Examples of org.gradle.api.internal.tasks.testing.junit.JUnitTestFramework


     *
     * @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 useJUnit(Closure testFrameworkConfigure) {
        return useTestFramework(new JUnitTestFramework(this), testFrameworkConfigure);
    }
View Full Code Here


     * org.gradle.api.tasks.testing.junit.JUnitOptions}, which can be used to configure how JUnit runs.
     *
     * @param testFrameworkConfigure A closure used to configure the JUnit options.
     */
    public void useJUnit(Closure testFrameworkConfigure) {
        useTestFramework(new JUnitTestFramework(this, filter), testFrameworkConfigure);
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.tasks.testing.junit.JUnitTestFramework

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.