Remove unused killer time measurement
Time gets mesured at runner level. Will introuce the use Benchmark.times there.
This commit is contained in:
parent
e903d88b22
commit
f132f355b4
1 changed files with 1 additions and 22 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Reference in a new issue