class RPerft::Client::TestResult
Attributes
description[R]
elapsed_seconds[R]
repetitions[R]
Public Class Methods
new(description, repetitions, elapsed_seconds)
click to toggle source
# File lib/rperft/client.rb, line 15 def initialize(description, repetitions, elapsed_seconds) @description = description @repetitions = repetitions @elapsed_seconds = elapsed_seconds @tags = [] end