Method: PropCheck::Property::Configuration#initialize
- Defined in:
- lib/prop_check/property/configuration.rb
#initialize(verbose: false, n_runs: 100, max_generate_attempts: 10_000, max_shrink_steps: 10_000, max_consecutive_attempts: 30, default_epoch: DateTime.now, resize_function: proc { |size| size }) ⇒ Configuration
Returns a new instance of Configuration.
33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/prop_check/property/configuration.rb', line 33 def initialize( verbose: false, n_runs: 100, max_generate_attempts: 10_000, max_shrink_steps: 10_000, max_consecutive_attempts: 30, default_epoch: DateTime.now, resize_function: proc { |size| size } ) super end |