Method: Pbt::Check::Configuration#initialize

Defined in:
lib/pbt/check/configuration.rb

#initialize(verbose: false, worker: :none, num_runs: 100, seed: Random.new_seed, thread_report_on_exception: false) ⇒ Configuration

Returns a new instance of Configuration.

Parameters:

  • verbose (Boolean) (defaults to: false)

    Whether to print verbose output. Default is ‘false`.

  • worker (Symbol) (defaults to: :none)

    The concurrency method to use. :ractor` and ‘:none` are supported. Default is `:none`.

  • num_runs (Integer) (defaults to: 100)

    The number of runs to perform. Default is ‘100`.

  • seed (Integer) (defaults to: Random.new_seed)

    The seed to use for random number generation. It’s useful to reproduce failed test with the seed you’d pick up from failure messages. Default is a random seed.

  • thread_report_on_exception (Boolean) (defaults to: false)

    Whether to report exceptions in threads. It’s useful to suppress error logs on Ractor that reports many errors. Default is ‘false`.


19
20
21
22
23
24
25
26
27
# File 'lib/pbt/check/configuration.rb', line 19

def initialize(
  verbose: false,
  worker: :none,
  num_runs: 100,
  seed: Random.new_seed,
  thread_report_on_exception: false
)
  super
end