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

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

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

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.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