testing/fixtures/README.md

18 lines
183 B
Markdown

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)
})
}