@stateManagement
Feature: State management
  Step definition can transfer state to a subsequent step definition by storing state
  in instance variables, as shown below.
  Even though setWorldConstructor isn't implemented, it's behavior
  can be closely replicated like shown below.

  @id_3700680250560f524d57fc36eedf90381d8c70a512a1b58220a23a4e6e8efa29
  Scenario: Store state
    Given a step asynchronously assigning to World
    Then I can access assignment synchronously

  @id_d1d10f77f9404a4ae2168c4be7b6b726738965855c23bd2a7c7fed772d9306b5
  Scenario: Replicate setWorldConstructor
    Given a variable set to 1
    When I increment the variable by 1
    Then the variable should contain 2
