Method: Mutant::Integration::Null#call

Defined in:
lib/mutant/integration/null.rb

#call(_tests) ⇒ Result::Test

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Run a collection of tests

Parameters:

Returns:



19
20
21
22
23
24
25
26
# File 'lib/mutant/integration/null.rb', line 19

def call(_tests)
  Result::Test.new(
    job_index: nil,
    output:    '',
    passed:    true,
    runtime:   0.0
  )
end