module Mutest::Result

Namespace and mixin module for results

Public Class Methods

included(host) click to toggle source

Hook called when module gets included

@param [Class, Module] host

@return [undefined]

# File lib/mutest/result.rb, line 58
def self.included(host)
  host.class_eval do
    include Adamantium
    extend ClassMethods
  end
end

Public Instance Methods

overhead() click to toggle source

Mutest overhead running mutatet tests

This is NOT the overhead of mutation testing, just an engine specific measurement for the efficiency of the parallelization engine, kill isolation etc.

@return [Float]

# File lib/mutest/result.rb, line 49
def overhead
  runtime - killtime
end