github.com/neatio-net/neatio@v1.7.3-0.20231114194659-f4d7a2226baa/tests/rlp_test.go (about)

     1  package tests
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func TestRLP(t *testing.T) {
     8  	t.Parallel()
     9  	tm := new(testMatcher)
    10  	tm.walk(t, rlpTestDir, func(t *testing.T, name string, test *RLPTest) {
    11  		if err := tm.checkFailure(t, name, test.Run()); err != nil {
    12  			t.Error(err)
    13  		}
    14  	})
    15  }