Are there options to build test without Given/When/then
so like
await Step(() => AccountSteps.CreateAnAccount())
.Step(() => HttpAssertions.TheHttpStatusCodeIs(HttpStatusCode.OK))
.BDTestAsync();
i would like to use nice reporting, but have all just like steps :) maybe it is easy to extend for myself
Are there options to build test without Given/When/then
so like
await Step(() => AccountSteps.CreateAnAccount())
.Step(() => HttpAssertions.TheHttpStatusCodeIs(HttpStatusCode.OK))
.BDTestAsync();
i would like to use nice reporting, but have all just like steps :) maybe it is easy to extend for myself