Hi,

Does anyone know if it's possible to create beforeStep(), afterStep()
methods? how can I register methods like that to be called?

We're managing our logs in a DB so I basically want to be able to indicate
in the logs that a step has started and therefore all logs below it belong
to that step and then finish the step. So ideally I'd like to be able to
pass the test of the step including any parameters for example,

@"when my order total is $value"
public void placeOrder(double value)
{
...
}

I'd like to be able to call:
createStepInLogs("when my order total is 50");

thanks!
graham

Reply via email to