Fluentassertions.aspnetcore.mvc Save

Fluent Assertions extensions for ASP.NET Core MVC

Project README

Fluent Assertions for ASP.NET Core MVC

Build status

This repo contains the Fluent Assertions extensions for ASP.NET Core MVC. It is maintained by @kevinkuszyk.

Installation

Add the NuGet package to your test project.

Add the Fluent Assertions for MVC Core NuGet package to your unit test project:

PM> Install-Package FluentAssertions.AspNetCore.Mvc

Getting Started

Write a unit test for your controller using one of the supported test frameworks. For example with NUnit:

[Test]
public void Index_Action_Returns_View()
{
    // Arrange
    var controller = new HomeController();

    // Act
    var result = controller.Index();

    // Assert
    result.Should().BeViewResult();
}

Building

Simply clone this repo and build the FluentAssertions.AspNetCore.Mvc.sln solution.

Open Source Agenda is not affiliated with "Fluentassertions.aspnetcore.mvc" Project. README Source: fluentassertions/fluentassertions.aspnetcore.mvc
Stars
50
Open Issues
4
Last Commit
8 months ago

Open Source Agenda Badge

Open Source Agenda Rating