Best Testng code snippet using org.testng.Interface ITestNGMethod.getEnabled
Source:SeleniumGridListener.java  
...165            if (!isAnnotatedWithTest(test.getConstructorOrMethod().getMethod())) {166                throw new IllegalStateException(167                        "Session sharing requires all test methods to define a priority via the @Test annotation.");168            }169            if (test.getEnabled() && test.getPriority() < low) {170                return false;171            }172        }173        Test t = method.getTestMethod().getConstructorOrMethod().getMethod().getAnnotation(Test.class);174        // If there is an existing session and the test method has a DP then don't create a session175        // For a data driven test method with the first data the session must be created176        // Hence return true if currentInvocationCount is 1 otherwise utilize the same session177        // by returning false178        int currentInvocationCount = method.getTestMethod().getCurrentInvocationCount();179        if (!t.dataProvider().isEmpty()) {180            return currentInvocationCount == 0;181        }182        return true;183    }184    private boolean isHighPriority(IInvokedMethod method) {185        if (!isAnnotatedWithTest(method)) {186            // Abort. There will already be an exception thrown in isLowPriority for this case.187            return true;188        }189        int high = method.getTestMethod().getPriority();190        for (ITestNGMethod test : method.getTestMethod().getTestClass().getTestMethods()) {191            if (test.getEnabled() && test.getPriority() > high) {192                return false;193            }194        }195        Test t = method.getTestMethod().getConstructorOrMethod().getMethod().getAnnotation(Test.class);196        // For a test method with a data provider197        if (!(t.dataProvider().isEmpty())) {198            int currentInvocationCount = method.getTestMethod().getCurrentInvocationCount();199            int parameterInvocationCount = method.getTestMethod().getParameterInvocationCount();200            // If the data set from the data provider is exhausted201            // It means its the last method with the data provider- this is the exit condition202            return (currentInvocationCount == parameterInvocationCount);203        }204        return true;205    }206    private boolean isAnnotatedWithTest(IInvokedMethod method) {207        return isAnnotatedWithTest(method.getTestMethod().getConstructorOrMethod().getMethod());208    }209    private boolean isAnnotatedWithTest(Method method) {210        Test t = method.getAnnotation(Test.class);211        return t != null;212   }213    private boolean isPriorityUnique(IInvokedMethod method) {214        // Logic to check priorities of all test methods are unique. This is used in Session Sharing.215        Set<Integer> check = new HashSet<Integer>();216        int length = method.getTestMethod().getTestClass().getTestMethods().length;217        int expectedSize = 0;218        for (int i = 0; i < length; i++) {219            //ignore @Test(enabled = false) methods220            if (!method.getTestMethod().getTestClass().getTestMethods()[i].getEnabled()) {221                continue;222            }223            check.add(method.getTestMethod().getTestClass().getTestMethods()[i].getPriority());224            expectedSize += 1;225            if (check.size() != expectedSize) {226                return false;227            }228        }229        return true;230    }231    /**232     * Executes when test case is finished<br>233     * 234     * Identify if webtest wants to have session open, otherwise close session<br>...Source:ITestNGMethod.java  
...204  int getThreadPoolSize();205206  void setThreadPoolSize(int threadPoolSize);207208  boolean getEnabled();209210  public String getDescription();211212  public void incrementCurrentInvocationCount();213  public int getCurrentInvocationCount();214  public void setParameterInvocationCount(int n);215  public int getParameterInvocationCount();216217  public ITestNGMethod clone();218219  public IRetryAnalyzer getRetryAnalyzer();220  public void setRetryAnalyzer(IRetryAnalyzer retryAnalyzer);221222  public boolean skipFailedInvocations();
...getEnabled
Using AI Code Generation
1ITestNGMethod[] methods = testng.getTest().getXmlTest().getIncludedMethods();2for(ITestNGMethod method : methods) {3    if(method.getEnabled()) {4        System.out.println(method.getMethodName());5    }6}getEnabled
Using AI Code Generation
1package com.javacodegeeks.testng.maven;2import org.testng.ITestNGMethod;3import org.testng.TestNG;4import org.testng.annotations.Test;5public class MavenTestNGTest {6    public void test() {7        TestNG testNG = new TestNG();8        testNG.setTestClasses(new Class[]{Test1.class});9        testNG.run();10        ITestNGMethod[] methods = testNG.getAllTestMethods();11        for (ITestNGMethod method : methods) {12            System.out.println(method.getMethodName() + " enabled: " + method.getEnabled());13        }14    }15}16package com.javacodegeeks.testng.maven;17import org.testng.annotations.Test;18public class Test1 {19    public void test1() {20        System.out.println("Test1.test1");21    }22    @Test(enabled = false)23    public void test2() {24        System.out.println("Test1.test2");25    }26}TestNG is a Java-based open-source framework for test automation that includes various test types, such as unit testing, functional testing, E2E testing, etc. TestNG is in many ways similar to JUnit and NUnit. But in contrast to its competitors, its extensive features make it a lot more reliable framework. One of the major reasons for its popularity is its ability to structure tests and improve the scripts' readability and maintainability. Another reason can be the important characteristics like the convenience of using multiple annotations, reliance, and priority that make this framework popular among developers and testers for test design. You can refer to the TestNG tutorial to learn why you should choose the TestNG framework.
You can push your abilities to do automated testing using TestNG and advance your career by earning a TestNG certification. Check out our TestNG certification.
Watch this complete tutorial to learn how you can leverage the capabilities of the TestNG framework for Selenium automation testing.
Get 100 minutes of automation test minutes FREE!!
