Sha256: a9910d807109cf16dd470397f3478d05be586018df4fc9e55360bdb0856389a7
Contents?: true
Size: 664 Bytes
Versions: 16
Compression:
Stored size: 664 Bytes
Contents
module TestIdsDev class Interface include OrigenTesters::ProgramGenerators def initialize(options = {}) case dut.test_ids when 1 TestIds.configure do |config| # Example of testing remote repo # config.repo = 'ssh://git@sw-stash.freescale.net/~r49409/test_ids_repo.git' config.bins.include << 3 config.bins.include << (10..20) config.bins.exclude << 15 config.softbins = :bbbxx config.numbers do |bin, softbin| softbin * 100 end end end end def func(name, options = {}) flow.test(name, options) end end end
Version data entries
16 entries across 16 versions & 1 rubygems