Swift turns 4.1, and so SwiftCheck marches onward. This release brought with it a raft of improvements:
- Non-operator spellings of the standard
property() <- test
pattern is provided in the form of the newquickCheck
functions. - Conditional conformances for a raft of Standard Library types obviate most modifier types. As such,
ArrayOf<T>
,SetOf<T>
,DictionaryOf<K, V>
, andOptionalOf<T>
have been removed. You can now directly use the natural types[T]
,Set<T>
,[K: V]
, andT?
respectively. - Documentation improvements and simplifications