given method

BddGiven given(
  1. String text
)

This keyword starts a step that sets up the initial context of the scenario. It's used to describe the state of the world before you begin the behavior you're specifying in this scenario. For example, "Given I am logged into the website" sets the scene for the actions that follow.

Implementation

BddGiven given(String text) => BddGiven(bdd, text);