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

step.junit.runner.StepClassParserResult Maven / Gradle / Ivy

There is a newer version: 3.24.0
Show newest version
package step.junit.runner;

import step.core.plans.Plan;

public class StepClassParserResult {

	private final String name;
	private final Plan plan;
	private final Exception initializingException;

	public StepClassParserResult(String name, Plan plan, Exception initializingException) {
		super();
		this.name = name;
		this.plan = plan;
		this.initializingException = initializingException;
	}

	public String getName() {
		return name;
	}

	public Plan getPlan() {
		return plan;
	}

	public Exception getInitializingException() {
		return initializingException;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy