Class: Cucumber::Core::Test::Timer
- Inherits:
-
Object
- Object
- Cucumber::Core::Test::Timer
- Defined in:
- lib/cucumber/core/test/timer.rb
Defined Under Namespace
Modules: MonotonicTime
Instance Method Summary collapse
Instance Method Details
#duration ⇒ Object
14 15 16 |
# File 'lib/cucumber/core/test/timer.rb', line 14 def duration Result::Duration.new(nsec) end |
#nsec ⇒ Object
18 19 20 |
# File 'lib/cucumber/core/test/timer.rb', line 18 def nsec time_in_nanoseconds - @start_time end |
#sec ⇒ Object
22 23 24 |
# File 'lib/cucumber/core/test/timer.rb', line 22 def sec nsec / (10**9.0) end |
#start ⇒ Object
9 10 11 12 |
# File 'lib/cucumber/core/test/timer.rb', line 9 def start @start_time = time_in_nanoseconds self end |