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

org.testng.internal.invokers.IMethodRunner Maven / Gradle / Ivy

package org.testng.internal.invokers;

import java.util.Iterator;
import java.util.List;
import java.util.concurrent.atomic.AtomicInteger;
import org.testng.ITestContext;
import org.testng.ITestResult;
import org.testng.internal.invokers.ITestInvoker.FailureContext;

public interface IMethodRunner {

  List runInSequence(
      TestMethodArguments arguments,
      ITestInvoker testInvoker,
      ITestContext context,
      AtomicInteger invocationCount,
      FailureContext failure,
      Iterator allParameterValues,
      boolean skipFailedInvocationCounts);

  List runInParallel(
      TestMethodArguments arguments,
      ITestInvoker testInvoker,
      ITestContext context,
      AtomicInteger invocationCount,
      FailureContext failure,
      Iterator allParameterValues,
      boolean skipFailedInvocationCounts);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy