The current Fuchu runner for FsCheck voids out any actions for OnStartFixture, OnArguments, and OnShrink while also providing the Fuchu implementation for OnFinished. For some tests, running testPropertyWithConfig Config.Verbose … can be useful for a quick verification that the property has been written correctly. Instead of voiding out the first three methods, this patch passes them through to the underlying runner. This allows the user to use the verbose configuration, or provide another alternate runner.
The current Fuchu runner for FsCheck voids out any actions for
OnStartFixture
,OnArguments
, andOnShrink
while also providing the Fuchu implementation forOnFinished
. For some tests, runningtestPropertyWithConfig Config.Verbose …
can be useful for a quick verification that the property has been written correctly. Instead of voiding out the first three methods, this patch passes them through to the underlying runner. This allows the user to use the verbose configuration, or provide another alternate runner.