Remove unused killer time measurement

Time gets mesured at runner level. Will introuce the use Benchmark.times there.
This commit is contained in:
Markus Schirp 2013-09-07 20:17:55 +02:00
parent e903d88b22
commit f132f355b4

View file

@ -33,7 +33,7 @@ module Mutant
#
def initialize(strategy, mutation)
@strategy, @mutation = strategy, mutation
run_with_benchmark
@killed = run
end
# Test for kill failure
@ -65,14 +65,6 @@ module Mutant
@killed
end
# Return runtime of killer
#
# @return [Float]
#
# @api private
#
attr_reader :runtime
# Return mutated source
#
# @return [String]
@ -85,19 +77,6 @@ module Mutant
private
# Run with taking the time
#
# @return [undefined]
#
# @api private
#
def run_with_benchmark
times = Benchmark.measure do
@killed = run
end
@runtime = times.real
end
# Return subject
#
# @return [Subject]