class TC_3264

Constants

DATA_PATH
LOGS_32BIT

Public Instance Methods

teardown() click to toggle source
Calls superclass method Pocolog::SelfTest#teardown
# File test/test_32_64.rb, line 7
def teardown
    super
    FileUtils.rm_f File.join(DATA_PATH, 'camera32bit.0.idx')
end
test_read_32bit() click to toggle source
# File test/test_32_64.rb, line 12
def test_read_32bit
    LOGS_32BIT.each do |filename, streams|
        logfile = Pocolog::Logfiles.open(File.join(DATA_PATH, filename))
        logfile.streams.each do |s|
            s.samples.to_a
        end
    end
end