Package cucumber
Class StepDefs
- java.lang.Object
-
- cucumber.StepDefs
-
public class StepDefs extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
StepDefs.ExitException
-
Constructor Summary
Constructors Constructor Description StepDefs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
a_test_string_with_string(String testName, String testDir, String resourceDir, String reportDir, String commandArgs)
void
execute_a_validate_command()
void
produced_output_from_validate_command_should_be_similar_to_reference_ref_output_value_or_no_error_reported(String refOutputValue)
void
with_test_property(int messageCount, String messageText, String problemEnum, String refOutputValue)
-
-
-
Method Detail
-
a_test_string_with_string
@Given("a test {string} at dir {string} at resource {string} sending report to {string} with {string} as arguments") public void a_test_string_with_string(String testName, String testDir, String resourceDir, String reportDir, String commandArgs)
-
with_test_property
@When("with test property count {int} text {string} problem {string} reference {string}") public void with_test_property(int messageCount, String messageText, String problemEnum, String refOutputValue)
-
execute_a_validate_command
@When("execute a validate command") public void execute_a_validate_command()
-
produced_output_from_validate_command_should_be_similar_to_reference_ref_output_value_or_no_error_reported
@Then("produced output from validate command should be similar to reference {string} or no error reported.") public void produced_output_from_validate_command_should_be_similar_to_reference_ref_output_value_or_no_error_reported(String refOutputValue)
-
-