
org.testtoolinterfaces.testresult.impl.TestStepCommandResultImpl Maven / Gradle / Ivy
/**
*
*/
package org.testtoolinterfaces.testresult.impl;
import org.testtoolinterfaces.testresult.TestStepCommandResult;
import org.testtoolinterfaces.testsuite.TestStepCommand;
import org.testtoolinterfaces.utils.Trace;
/**
* @author arjan.kranenburg
*
*/
public class TestStepCommandResultImpl extends TestStepResultImpl implements TestStepCommandResult
{
/**
* @param aTestCaseName
*/
public TestStepCommandResultImpl(TestStepCommand aTestStepCommand)
{
super( aTestStepCommand );
Trace.println(Trace.CONSTRUCTOR, "TestStepResult( " + aTestStepCommand + " )" );
}
public String getCommand()
{
return ((TestStepCommand) this.getTestEntry()).getCommand();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy