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

org.etlunit.TestMethodResultImpl Maven / Gradle / Ivy

package org.etlunit;

public class TestMethodResultImpl implements TestMethodResult
{
	private final String className;
	private final String methodName;

	private final TestResultMetrics testResults = new TestResultMetricsImpl();

	public TestMethodResultImpl(String className, String methodName)
	{
		this.methodName = methodName;
		this.className = className;
	}

	@Override
	public String testClassName()
	{
		return className;
	}

	@Override
	public String testMethodName()
	{
		return methodName;
	}

	@Override
	public TestResultMetrics getMetrics()
	{
		return testResults;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy