You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For certain tests SwiftCheck is too heavy/unneeded. Equatable tests for example don't need to check different permutations since they don't have code paths in them.
Resolving this issue with speed up our tests by a good amount (especially the soon-to-come FrequencyDistribution and ProbabilityMass tests).
The text was updated successfully, but these errors were encountered:
Executed 181 tests, with 0 failures (0 unexpected) in 6.868 (7.005) seconds
If we could combine some of the SwiftCheck tests together, while still knowing which part failed, we would get a big speed up (e.g. Equatable tests). So far when trying to do so I've failed to have the failure output point to which part fail. It still says which input failed, so maybe that is enough (you could debug with that input).
For certain tests SwiftCheck is too heavy/unneeded. Equatable tests for example don't need to check different permutations since they don't have code paths in them.
Resolving this issue with speed up our tests by a good amount (especially the soon-to-come
FrequencyDistribution
andProbabilityMass
tests).The text was updated successfully, but these errors were encountered: