Sha256: 24f6e11ca2bc5c958c80d5e13dd6b36cdc400bc563bffda09a5dfc4c264c97a1
Contents?: true
Size: 908 Bytes
Versions: 18
Compression:
Stored size: 908 Bytes
Contents
module Origen module Tester module Parser autoload :SearchableArray, 'origen/tester/parser/searchable_array' autoload :SearchableHash, 'origen/tester/parser/searchable_hash' autoload :DescriptionLookup, 'origen/tester/parser/description_lookup' def parse(*args, &block) parser.parse(*args, &block) end # Returns a SearchableArray containing all tests parsed from flows, this is intended to # be the main API for accessing parsed test program attributes and should be a consistent # method that is implemented accross all tester models. # # Direct access to the underlying structure (which will be specific to the tester model) # can be achieved through the parser method, which returns an instance of J750::Parser # $tester.parser.test_instances def tests parser.flow_items end end end end
Version data entries
18 entries across 18 versions & 1 rubygems