module TestBench::Controls::Output::BatchData

Public Class Methods

depth() click to toggle source
# File lib/test_bench/controls/output/batch_data.rb, line 16
def self.depth
  1
end
example(result: nil, depth: nil) click to toggle source
# File lib/test_bench/controls/output/batch_data.rb, line 5
def self.example(result: nil, depth: nil)
  result = self.result if result.nil?
  depth ||= self.depth

  TestBench::Output::BatchData.new(result, depth)
end
result() click to toggle source
# File lib/test_bench/controls/output/batch_data.rb, line 12
def self.result
  Pass.result
end