Method: Fast::ExperimentFile#initialize
- Defined in:
- lib/fast/experiment.rb
#initialize(file, experiment) ⇒ ExperimentFile
Returns a new instance of ExperimentFile.
247 248 249 250 251 252 253 254 |
# File 'lib/fast/experiment.rb', line 247 def initialize(file, experiment) @file = file @ast = Fast.ast_from_file(file) if file @experiment = experiment @ok_experiments = [] @fail_experiments = [] @round = 0 end |