Sha256: 33a8aa14f097a1ec6f036de78d957b4e06382c6f27ca2f1a85f79d0a30100310

Contents?: true

Size: 852 Bytes

Versions: 1

Compression:

Stored size: 852 Bytes

Contents

Feature: Creating a JUnit test report

    Background:
        Given the tests have started running

    Scenario: Showing a test suite
        When I pipe to xcpretty with "--report junit"
        Then I should see a test suite node

    Scenario: Showing failed tests
        Given I have a failing test in my suite
        When I pipe to xcpretty with "--report junit"
        Then I should see a failed test node in my report

    Scenario: Showing passing tests
        Given I have a passing test in my suite
        When I pipe to xcpretty with "--report junit"
        Then I should see a passing test node in my report

    Scenario: Counting tests
        Given I have a passing test in my suite
        And I have a failing test in my suite
        When I pipe to xcpretty with "--report junit"
        Then I should see 2 tests in my report

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xcpretty-0.0.6 features/junit_report.feature