Module: Mutant::Runner Private

Defined in:
lib/mutant/runner.rb,
lib/mutant/runner/sink.rb

Overview

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

Runner

Defined Under Namespace

Classes: Sink

Class Method Summary collapse

Class Method Details

.apply(env) ⇒ Either<String, Result>

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 against env

Returns:



9
10
11
12
13
# File 'lib/mutant/runner.rb', line 9

def self.apply(env)
  reporter(env).start(env)

  Either::Right.new(run_mutation_analysis(env))
end