Skip to content

Rorschach in the wild

Compare
Choose a tag to compare
@q231950 q231950 released this 18 Apr 07:30

Rorschach is a Swift Package for writing Xcode UI Tests in a BDD style. This first version allows to expect given/when/then acceptance criteria in a context defined by the test.

let context = UniverseContext()

expect(in: context) {
    Given {
        ILearnABitMore()
        IBuildARocket()
    }
    When {
        ILaunchARocket()
    }
    Then {
        ICanSeeTheStars()
    }
}