Yarn
Boolean Expectations
Usage
import YarnExample
func someFunction() throws -> Bool {
true
}
Yarn.expectFunctionToReturnTrue(someFunction)
Yarn.expectClosureToReturnFalse {
false
}Example Output
5/9/21, 10:02 AM [yarn.console.log.expectation] ✅: expectFunctionToReturnTrue
5/9/21, 10:02 AM [yarn.console.log.expectation] ❌: expectClosureToReturnFalse
Example Error
func someThrowingFunction() throws -> Bool {
throw Yarn.SomeError.expectedError
}
Yarn.expectFunctionToThrowAnError(someThrowingFunction)Error Output
5/9/21, 10:02 AM [yarn.console.log.expectation] 🚨: expectFunctionToThrowAnError
{
SomeError(message: "expectedError"): The operation couldn’t be completed. (Yarn.Yarn.SomeError error 1.)
}
On this page
Languages
Swift100.0%
Contributors
Latest Release
1.0.0May 9, 2021MIT License
Created May 9, 2021
Updated February 9, 2026