xUnit for ASP.NET — a practical guide to xUnit ASP.NET with clear examples you can reuse in real projects.
ASP & ASP.NET Tutorial Series (224/247). Prefer one article? Read the complete ASP.NET tutorial.
Short description
Default test framework for many .NET templates.
xUnit
[Fact]
public void Add_works()
{
Assert.Equal(4, 2 + 2);
}