module Rgot

Constants

ExampleOutput
InternalBenchmark
InternalExample
InternalFuzzTarget
InternalTest
OptionError
VERSION

Public Class Methods

benchmark(opts_hash = {}, &block) click to toggle source
# File lib/rgot.rb, line 26
def benchmark(opts_hash = {}, &block)
  opts = B::Options.new
  opts_hash.each do |k, v|
    opts[k] = v
  end
  B.new(nil, nil, opts).run(&block)
end
now() click to toggle source
# File lib/rgot.rb, line 22
def now
  Process.clock_gettime(Process::CLOCK_MONOTONIC)
end
verbose?() click to toggle source
# File lib/rgot.rb, line 34
def verbose?
  @chatty
end