quickcheck icon indicating copy to clipboard operation
quickcheck copied to clipboard

Property Based Testing in R

Results 7 quickcheck issues
Sort by recently updated
recently updated
newest added

``` Executing: cd "/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_R_R-quickcheck/R-quickcheck/work/quickcheck" && /opt/local/bin/R CMD INSTALL . --library=/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_R_R-quickcheck/R-quickcheck/work/destroot/opt/local/Library/Frameworks/R.framework/Versions/4.3/Resources/library * installing *source* package ‘quickcheck’ ... ** package ‘quickcheck’ successfully unpacked and MD5 sums checked ** using staged installation **...

If a generated value has NAs shouldn't be controlled by a logical. There should be more control about the proportion of NAs. A number doesn't work well since the NAs...

I'm actually uncertain as to why this doesn't raise an issue during check, but it otherwise raises a Note on install. Closes #19

I looked for a list of the generators the package provide, but didnt find one. Is there one? The closes I found was this statement: _Many generators are provided with...

I believe it is converted to integer in the process of inserting NA. ``` r quickcheck::for_all( factors = quickcheck::factor_(any_na = TRUE), property = function(factors) { print(factors) testthat::expect_s3_class(factors, "factor") } )...

Hi, great package, thank you! When multiple arguments are involved, it can be annoying to manually write all the values that trigger the error: ``` r library(quickcheck) library(testthat) foo 1)...