Skip to content

Commit

Permalink
test_roundtrip_seekstart
Browse files Browse the repository at this point in the history
  • Loading branch information
nhz2 committed Jun 10, 2024
1 parent 55c2c42 commit dcd7fdc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/frame_compression.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ erat ex bibendum ipsum, sed varius ipsum ipsum vitae dui.
@test sizeof(decompressed) > sizeof(compressed)
@test decompressed == Vector{UInt8}(text)

TranscodingStreams.test_roundtrip_read(LZ4FrameCompressorStream, LZ4FrameDecompressorStream)
TranscodingStreams.test_roundtrip_write(LZ4FrameCompressorStream, LZ4FrameDecompressorStream)
TranscodingStreams.test_roundtrip_lines(LZ4FrameCompressorStream, LZ4FrameDecompressorStream)
if isdefined(TranscodingStreams, :test_roundtrip_seekstart)
TranscodingStreams.test_roundtrip_seekstart(LZ4FrameCompressorStream, LZ4FrameDecompressorStream)
end
test_roundtrip_fileio(LZ4FrameCompressor, LZ4FrameDecompressor)
test_roundtrip_transcode(LZ4FrameCompressor, LZ4FrameDecompressor)

Expand Down

0 comments on commit dcd7fdc

Please sign in to comment.