aboutsummaryrefslogtreecommitdiffstats
path: root/tests/rlp_test.go
blob: 70bd1962787a73d17365193fe6d7c7cc89092008 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package tests

import (
    "path/filepath"
    "testing"
)

func TestRLP(t *testing.T) {
    err := RunRLPTest(filepath.Join(rlpTestDir, "rlptest.json"), nil)
    if err != nil {
        t.Fatal(err)
    }
}

func TestRLP_invalid(t *testing.T) {
    err := RunRLPTest(filepath.Join(rlpTestDir, "invalidRLPTest.json"), nil)
    if err != nil {
        t.Fatal(err)
    }
}