All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.PreserveOrderMethodInterceptor Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng;

import org.testng.internal.MethodInstance;

import java.util.List;

/**
 * A method interceptor that preserves the order in which test classes were found in the
 * <test> tag.
 *
 * @author cbeust
 */
class PreserveOrderMethodInterceptor implements IMethodInterceptor {

  @Override
  public List intercept(List methods, ITestContext context) {
    methods.sort(MethodInstance.SORT_BY_INDEX);
    return methods;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy