github.com/segmentio/parquet-go@v0.0.0-20230712180008-5d42db8f0d47/encoding/bitpacked/bitpacked_test.go (about)

     1  //go:build go1.18
     2  // +build go1.18
     3  
     4  package bitpacked_test
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/segmentio/parquet-go/encoding/fuzz"
    10  	"github.com/segmentio/parquet-go/encoding/rle"
    11  )
    12  
    13  func FuzzEncodeLevels(f *testing.F) {
    14  	fuzz.EncodeLevels(f, &rle.Encoding{BitWidth: 8})
    15  }