github.com/chainreactors/fingers@v1.2.1/resources/embed_test.go (about)

     1  package resources
     2  
     3  import (
     4  	"fmt"
     5  	"github.com/chainreactors/utils/encode"
     6  	"testing"
     7  )
     8  
     9  func TestGzipDecompress(t *testing.T) {
    10  	t.Log("TestGzipDecompress")
    11  	decompress := encode.MustGzipDecompress(EholeData)
    12  	fmt.Println(string(decompress))
    13  }