github.com/neatlab/neatio@v1.7.3-0.20220425043230-d903e92fcc75/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 }