github.com/linapex/ethereum-dpos-chinese@v0.0.0-20190316121959-b78b3a4a1ece/tests/rlp_test.go (about)

     1  
     2  //<developer>
     3  //    <name>linapex 曹一峰</name>
     4  //    <email>linapex@163.com</email>
     5  //    <wx>superexc</wx>
     6  //    <qqgroup>128148617</qqgroup>
     7  //    <url>https://jsq.ink</url>
     8  //    <role>pku engineer</role>
     9  //    <date>2019-03-16 12:09:50</date>
    10  //</624342685976629248>
    11  
    12  //
    13  //
    14  //
    15  //
    16  //
    17  //
    18  //
    19  //
    20  //
    21  //
    22  //
    23  //
    24  //
    25  //
    26  //
    27  
    28  package tests
    29  
    30  import (
    31  	"testing"
    32  )
    33  
    34  func TestRLP(t *testing.T) {
    35  	t.Parallel()
    36  	tm := new(testMatcher)
    37  	tm.walk(t, rlpTestDir, func(t *testing.T, name string, test *RLPTest) {
    38  		if err := tm.checkFailure(t, name, test.Run()); err != nil {
    39  			t.Error(err)
    40  		}
    41  	})
    42  }
    43