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

com.github.robindevilliers.cascade.modules.TestExecutor Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.github.robindevilliers.cascade.modules;


import com.github.robindevilliers.cascade.Scope;
import com.github.robindevilliers.cascade.model.Journey;
import org.junit.runner.Description;
import org.junit.runner.notification.RunNotifier;

import java.util.List;
import java.util.Map;

public interface TestExecutor {

    void init(Class controlClass, Map globalScope);

    void executeTest(RunNotifier notifier, Description description, List steps, Journey journey, TestReport reporter, Map scope);
}