Class: Benchmark::Suite::SimpleReport

Inherits:
Object
  • Object
show all
Defined in:
lib/benchmark/suite.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSimpleReport

Returns a new instance of SimpleReport.



29
30
31
32
# File 'lib/benchmark/suite.rb', line 29

def initialize
  @start = nil
  @end = nil
end

Instance Attribute Details

#endObject (readonly)

Returns the value of attribute end.



34
35
36
# File 'lib/benchmark/suite.rb', line 34

def end
  @end
end

#startObject (readonly)

Returns the value of attribute start.



34
35
36
# File 'lib/benchmark/suite.rb', line 34

def start
  @start
end