testing/fixtures
Matthew Rich 81d96f305f import testing package 2024-05-08 13:28:36 -07:00
..
README.md import testing package 2024-05-08 13:28:36 -07:00
fixture_test.go import testing package 2024-05-08 13:28:36 -07:00
fixtures.go import testing package 2024-05-08 13:28:36 -07:00
testdata.go import testing package 2024-05-08 13:28:36 -07:00
testdata_test.go import testing package 2024-05-08 13:28:36 -07:00
tester.go import testing package 2024-05-08 13:28:36 -07:00

README.md

Ex.

func TestSample(t *testing.T) { f := fixtures.New(t, fixtures.TestDataInit{}) f.RunWith(Test(func (t *testing.T) { d := f.GetData('') f.Successful

r,e := MySample(d)

}) }