SwiftCheck icon indicating copy to clipboard operation
SwiftCheck copied to clipboard

QuickCheck for Swift

Results 25 SwiftCheck issues
Sort by recently updated
recently updated
newest added

### Version abeeb22 ### Environment Mac OS Catalina 10.15.7 (19H2) , XCode 12.3 (12C33) ### Description Playground does not work: `No such module 'SwiftCheck'` ``` error: Tutorial.playground:64:16: error: cannot find...

What's in this pull request? ============================ Fixes a usage shown in README: `Bool.suchThat` is mentioned, but it doesn't exist. Why merge this pull request? ============================ It makes the documentation a...

Version ======== `077c096c3ddfc38db223ac8e525ad16ffb987138` Environment =========== - macOS 11.6 - Xcode 13.1RC - 2019 Intel 16" MBP Description ============ When combined with `proliferate(withSize:)`, `(U)Int[8|16|32|64].arbitrary` will only generate values from `-30` to...

Hello dev: Just make breakpoint works in debug mode with CLion or command line debug with LLVM. [issue : Missing libXCTestSwiftSupport.dylib](https://forums.swift.org/t/missing-libxctestswiftsupport-dylib/35314) ![image](https://user-images.githubusercontent.com/8240718/129890608-2af67592-d0f5-408c-a7ce-ffb6dfc8203c.png)

Version ======== 0.12.0 Environment =========== Mac OS X Description ============ we are using swift check version 0.12.0 which can be used by frameworks which have been built by xcode 11....

[I've written an integer partition generator](https://github.com/bow-swift/bow/blob/master/Tests/BowGenerators/Data/Tree%2BGen.swift#L31). For example, I have used it to write a generator for a tree: ```swift class Tree { let root: A let subForest: [Tree] }...

I have managed to get async by combing it with expectation wait and fulfills, but the mixed usage is a little clunky. [A JS implementation of Quickcheck uses a `verdict`...

Version ======== `077c096c3ddfc38db223ac8e525ad16ffb987138` Environment =========== macOS 10.15.6, Swift 5.2, Xcode 11.6 Description ============ I was following the steps from `README.md` to learn about SwiftCheck. Unfortunately, the example for complex properties...

What's in this pull request? ============================ I added definitions of `arbitrary` for the `Date` and `UUID` foundation types. I also included unit tests for both. Why merge this pull request?...