Skip to content

core-2.1.2

Compare
Choose a tag to compare
@rus-art rus-art released this 09 Jun 06:45
· 2 commits to master since this release
f8a685a

Better steps design

// old design
await Steps.Step("Step", async () => 
{
   await Test()
});

// new design
using (new AllureStep("Step"))
{
    await Test();
}