Releases: q231950/rorschach
Releases · q231950/rorschach
Colorful Tone
Crouching Cloud
Subclassing of Steps and Assertions is no longer necessary and the obligatory Context has been removed.
Find some examples of the usage in pr #3.
Xcode 12 Compatibility Release
Thanks to @devandanger for adding Xcode 12 support! That's also the only change in this release to mention in the log.
Rorschach in the wild
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()
}
}