class CucumberStatistics::OverallStatistics

Public Instance Methods

duration() click to toggle source
# File lib/cucumber_statistics/overall_statistics.rb, line 13
def duration
  end_time - start_time
end
feature_count_inc() click to toggle source
# File lib/cucumber_statistics/overall_statistics.rb, line 17
def feature_count_inc
  self.feature_count += 1
end
scenario_count_inc() click to toggle source
# File lib/cucumber_statistics/overall_statistics.rb, line 21
def scenario_count_inc
  self.scenario_count += 1
end
step_count_inc() click to toggle source
# File lib/cucumber_statistics/overall_statistics.rb, line 25
def step_count_inc
  self.step_count += 1
end