testing/fixtures/README.md

18 lines
183 B
Markdown
Raw Normal View History

2024-05-08 20:28:36 +00:00
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)
})
}