Package io.cucumber.messages.types
Class TestCase
- java.lang.Object
-
- io.cucumber.messages.types.TestCase
-
public class TestCase extends Object
//// TestCases * A `TestCase` contains a sequence of `TestStep`s.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)StringgetId()(Required)StringgetPickleId()The ID of the `Pickle` this `TestCase` is derived from.List<TestStep>getTestSteps()(Required)inthashCode()voidsetId(String id)(Required)voidsetPickleId(String pickleId)The ID of the `Pickle` this `TestCase` is derived from.voidsetTestSteps(List<TestStep> testSteps)(Required)StringtoString()
-
-
-
Method Detail
-
getId
public String getId()
(Required)
-
setId
public void setId(String id)
(Required)
-
getPickleId
public String getPickleId()
The ID of the `Pickle` this `TestCase` is derived from. (Required)
-
setPickleId
public void setPickleId(String pickleId)
The ID of the `Pickle` this `TestCase` is derived from. (Required)
-
-