Ivaylo Kenov
Ivaylo Kenov
Example test: ```c# MyController .Instance() .WithActionExecuting() // Name may change .WithActionExecuted() // Name may change .Calling(c => c.Index()) .ShouldReturn() .Ok(); ```
Example test: ```c# MyRouting .Configuration(routes => routes.MapControllerRoutes()) .ShouldMap("/My/Action/1") .To(c => c.Action(1)); ```
```c# MyController .Action(c => c.Index()) // does not execute the action .ShouldHave() .ActionAttributes(); ```
Example test: ```c# // Page Model public class IndexModel2 : PageModel { public string Message { get; private set; } = "PageModel in C#"; public void OnGet() { Message +=...
https://github.com/dotnet/arcade/tree/master/src/Microsoft.DotNet.ApiCompat
Currently, the code is very clean but there are differences here and there so a code analysis rule set should enhance the library. Check the ASP.NET Core MVC source for...
The documentation should have different versions for 1.1, 2.1, 2.2, etc.