Package org.testng.internal

Examples of org.testng.internal.NoOpTestClass


     *
     * @param testClass
     *            TestNG test class wrapper
     */
    private void disableConfigurationMethods(ITestClass testClass) {
        NoOpTestClass instance = (NoOpTestClass) testClass;
        ITestNGMethod[] noMethods = new ITestNGMethod[0];
        Class<?> javaClass = NoOpTestClass.class;
        setPrivateField(javaClass, instance, "m_beforeTestMethods", noMethods);
        setPrivateField(javaClass, instance, "m_afterTestMethods", noMethods);
    }
View Full Code Here

TOP

Related Classes of org.testng.internal.NoOpTestClass

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.