KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /domains/irtiweb/CATS/vendor/behat/behat/features/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /domains/irtiweb/CATS/vendor/behat/behat/features/dry_run.feature
Feature: Dry run
  In order to print formatters output without executing steps
  As a feature developer
  I need to have a --dry-run option

  Background:
    Given a file named "features/bootstrap/FeatureContext.php" with:
      """
      <?php

      use Behat\Behat\Context\Context;
      use Behat\Gherkin\Node\PyStringNode,
          Behat\Gherkin\Node\TableNode;

      class FeatureContext implements Context
      {
          /**
           * @BeforeScenario
           */
          public static function beforeScenario() {
              echo "HOOK: before scenario";
          }

          /**
           * @Given /^I have (\d+) apples?$/
           */
          public function iHaveApples($count) {
              echo "STEP: I have $count apples";
          }

          /**
           * @When /^I ate (\d+) apples?$/
           */
          public function iAteApples($count) {
              echo "STEP: I ate $count apples";
          }

          /**
           * @When /^I found (\d+) apples?$/
           */
          public function iFoundApples($count) {
              echo "STEP: I found $count apples";
          }

          /**
           * @Then /^I should have (\d+) apples$/
           */
          public function iShouldHaveApples($count) {
              echo "STEP: I should have $count apples";
          }
      }
      """
    And a file named "features/apples.feature" with:
      """
      Feature: Apples story
        In order to eat apple
        As a little kid
        I need to have an apple in my pocket

        Background:
          Given I have 3 apples

        Scenario: I'm little hungry
          When I ate 1 apple
          Then I should have 3 apples

        Scenario: Found more apples
          When I found 5 apples
          Then I should have 8 apples

        Scenario: Found more apples
          When I found 2 apples
          Then I should have 5 apples

        Scenario Outline: Other situations
          When I ate <ate> apples
          And I found <found> apples
          Then I should have <result> apples

          Examples:
            | ate | found | result |
            | 3   | 1     | 1      |
            | 0   | 4     | 8      |
            | 2   | 2     | 3      |
      """

  Scenario: Just run feature
    When I run "behat --no-colors --format-settings='{\"paths\": false}' features/apples.feature"
    Then it should pass with:
      """
      Feature: Apples story
        In order to eat apple
        As a little kid
        I need to have an apple in my pocket

        Background:
          Given I have 3 apples
            │ STEP: I have 3 apples

        ┌─ @BeforeScenario # FeatureContext::beforeScenario()
        │
        │  HOOK: before scenario
        │
        Scenario: I'm little hungry
          When I ate 1 apple
            │ STEP: I ate 1 apples
          Then I should have 3 apples
            │ STEP: I should have 3 apples

        ┌─ @BeforeScenario # FeatureContext::beforeScenario()
        │
        │  HOOK: before scenario
        │
        Scenario: Found more apples
          Given I have 3 apples
            │ STEP: I have 3 apples
          When I found 5 apples
            │ STEP: I found 5 apples
          Then I should have 8 apples
            │ STEP: I should have 8 apples

        ┌─ @BeforeScenario # FeatureContext::beforeScenario()
        │
        │  HOOK: before scenario
        │
        Scenario: Found more apples
          Given I have 3 apples
            │ STEP: I have 3 apples
          When I found 2 apples
            │ STEP: I found 2 apples
          Then I should have 5 apples
            │ STEP: I should have 5 apples

        Scenario Outline: Other situations
          When I ate <ate> apples
          And I found <found> apples
          Then I should have <result> apples

          Examples:
            | ate | found | result |
            ┌─ @BeforeScenario # FeatureContext::beforeScenario()
            │
            │  HOOK: before scenario
            │
            | 3   | 1     | 1      |
              │ STEP: I have 3 apples
              │ STEP: I ate 3 apples
              │ STEP: I found 1 apples
              │ STEP: I should have 1 apples
            ┌─ @BeforeScenario # FeatureContext::beforeScenario()
            │
            │  HOOK: before scenario
            │
            | 0   | 4     | 8      |
              │ STEP: I have 3 apples
              │ STEP: I ate 0 apples
              │ STEP: I found 4 apples
              │ STEP: I should have 8 apples
            ┌─ @BeforeScenario # FeatureContext::beforeScenario()
            │
            │  HOOK: before scenario
            │
            | 2   | 2     | 3      |
              │ STEP: I have 3 apples
              │ STEP: I ate 2 apples
              │ STEP: I found 2 apples
              │ STEP: I should have 3 apples

      6 scenarios (6 passed)
      21 steps (21 passed)
      """

  Scenario: Run feature with --dry-run
    When I run "behat --no-colors --dry-run features/apples.feature"
    Then it should pass with:
      """
      Feature: Apples story
        In order to eat apple
        As a little kid
        I need to have an apple in my pocket

        Background:             # features/apples.feature:6
          Given I have 3 apples # FeatureContext::iHaveApples()

        Scenario: I'm little hungry   # features/apples.feature:9
          When I ate 1 apple          # FeatureContext::iAteApples()
          Then I should have 3 apples # FeatureContext::iShouldHaveApples()

        Scenario: Found more apples   # features/apples.feature:13
          When I found 5 apples       # FeatureContext::iFoundApples()
          Then I should have 8 apples # FeatureContext::iShouldHaveApples()

        Scenario: Found more apples   # features/apples.feature:17
          When I found 2 apples       # FeatureContext::iFoundApples()
          Then I should have 5 apples # FeatureContext::iShouldHaveApples()

        Scenario Outline: Other situations   # features/apples.feature:21
          When I ate <ate> apples            # FeatureContext::iAteApples()
          And I found <found> apples         # FeatureContext::iFoundApples()
          Then I should have <result> apples # FeatureContext::iShouldHaveApples()

          Examples:
            | ate | found | result |
            | 3   | 1     | 1      |
            | 0   | 4     | 8      |
            | 2   | 2     | 3      |

      --- Skipped scenarios:

          features/apples.feature:9
          features/apples.feature:13
          features/apples.feature:17
          features/apples.feature:28
          features/apples.feature:29
          features/apples.feature:30

      6 scenarios (6 skipped)
      21 steps (21 skipped)
      """

Anon7 - 2021