MyTested.AspNetCore.Mvc icon indicating copy to clipboard operation
MyTested.AspNetCore.Mvc copied to clipboard

Add OnActionExecuting and OnActionExecuted testing options

Open ivaylokenov opened this issue 5 years ago • 0 comments

Example test:

MyController<HomeController>
    .Instance()
    .WithActionExecuting() // Name may change
    .WithActionExecuted() // Name may change
    .Calling(c => c.Index())
    .ShouldReturn()
    .Ok();

ivaylokenov avatar Jul 07 '19 12:07 ivaylokenov