1// +build go1.7
2
3package plist
4
5import "testing"
6
7func subtest(t *testing.T, name string, f func(t *testing.T)) {
8	t.Run(name, f)
9}
10