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

org.testng.internal.MethodSelectorDescriptor Maven / Gradle / Ivy

package org.testng.internal;

import org.testng.IMethodSelector;
import org.testng.ITestNGMethod;

import java.util.List;

/**
 * This class describes a method selector:
 * - The class that implements it
 * - Its priority
 */
public class MethodSelectorDescriptor implements Comparable {

  private final IMethodSelector m_methodSelector;
  private final int m_priority;

  public int getPriority() {
    return m_priority;
  }

  public IMethodSelector getMethodSelector() {
    return m_methodSelector;
  }

  public MethodSelectorDescriptor(IMethodSelector selector, int priority) {
    m_methodSelector = selector;
    m_priority = priority;
  }

  @Override
  public int compareTo(MethodSelectorDescriptor other) {
    if (other == null) {
      return 1;
    }

    return m_priority - other.m_priority;
  }

  public void setTestMethods(List testMethods) {
    m_methodSelector.setTestMethods(testMethods);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy