All Projects → fluentassertions → fluentassertions.mvc

fluentassertions / fluentassertions.mvc

Licence: MS-PL license
Fluent Assertions extensions for ASP.NET MVC

Programming Languages

C#
18002 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to fluentassertions.mvc

Smartstorenet
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
Stars: ✭ 2,363 (+6463.89%)
Mutual labels:  mvc, aspnet
Opentouryo
”Open棟梁”は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET用アプリケーション フレームワークです。 (”OpenTouryo” , is an application framework for .NET which was developed using the accumulated know-how with a long track record in .NET application development.)
Stars: ✭ 233 (+547.22%)
Mutual labels:  mvc, aspnet
Social-Network
Twitter like Social network written in ASP.NET MVC5
Stars: ✭ 23 (-36.11%)
Mutual labels:  mvc, aspnet
UMeditor-For-Azure-Blob
使用Microsoft Azure存储(Blob)保存 UMeditor中上传的图片、视频 、附件、涂鸦、等...
Stars: ✭ 18 (-50%)
Mutual labels:  aspnet
X.Web.Sitemap
Simple sitemap generator for .NET
Stars: ✭ 66 (+83.33%)
Mutual labels:  aspnet-mvc
app container
a little little framework 一个简单的SPA框架, 按照自己对SPA的交互理解制作~
Stars: ✭ 19 (-47.22%)
Mutual labels:  mvc
MSBuild.SDK.SystemWeb
This MSBuild SDK is designed to allow for the easy creation and use of SDK (shortform) projects targeting ASP.NET 4.x using System.Web.
Stars: ✭ 70 (+94.44%)
Mutual labels:  aspnet
hornbill
基于uri的 node mvc框架,适用于前后端分离服务
Stars: ✭ 22 (-38.89%)
Mutual labels:  mvc
dilovel
An advanced framework is written in PHP, a framework containing rich components such as middleware, orm, request management, template engine, elasticsearch, template engine, many modern frameworks have been written by adopting clean code principles completely written in accordance with PHP standards. like linux operating system ...All of control…
Stars: ✭ 38 (+5.56%)
Mutual labels:  mvc
ExtApp
ExtApp是一个基于三层架构,使用NHibernate、API Controller和ExtJs创建的,用于简化政府和企业应用开发的Web应用程序框架。
Stars: ✭ 14 (-61.11%)
Mutual labels:  mvc
ThreeDPayment
Est altyapısına sahip tüm bankalarla uyumlu 3DPay model sanal pos örneği - ASP.NET Core 3.1 ile yazılan yeni version https://github.com/sefacan/3DPaymentAspNetCore
Stars: ✭ 29 (-19.44%)
Mutual labels:  aspnet
app
Aplus Framework App Project
Stars: ✭ 338 (+838.89%)
Mutual labels:  mvc
estore
Electronic Store Application - A web based application developed using PHP and Driven by MySQL Database
Stars: ✭ 48 (+33.33%)
Mutual labels:  mvc
run-aspnet-identityserver4
Secure microservices with using standalone Identity Server 4 and backing with Ocelot API Gateway. Protect our ASP.NET Web MVC and API applications with using OAuth 2 and OpenID Connect in IdentityServer4. Securing your web application and API with tokens, working with claims, authentication and authorization middlewares and applying policies.
Stars: ✭ 159 (+341.67%)
Mutual labels:  aspnet
puremvc-swift-multicore-framework
PureMVC MultiCore Framework for Swift
Stars: ✭ 17 (-52.78%)
Mutual labels:  mvc
ReCaptcha-Asp-Net
Google ReCaptcha for Asp Net, simplified
Stars: ✭ 51 (+41.67%)
Mutual labels:  aspnet
sirius
Modern coffeescript/javascript framework
Stars: ✭ 20 (-44.44%)
Mutual labels:  mvc
DNTCommon.Web.Core
DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core 3.x applications.
Stars: ✭ 117 (+225%)
Mutual labels:  mvc
Bootstrap-Docs
Bootstrap 2.x, 3.x Traditional Chinese Docs, Based on ASP.NET MVC 5 Framework, No Continued maintain just open source it.
Stars: ✭ 16 (-55.56%)
Mutual labels:  aspnet-mvc
riskfirst.hateoas
Powerful HATEOAS functionality for .NET web api
Stars: ✭ 69 (+91.67%)
Mutual labels:  aspnet

Fluent Assertions for ASP.NET MVC

Build status

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

Installation

Add the NuGet package which matches the version of MVC you are using to your test project.

MVC Core

Fluent Assertions for MVC Core is now in a seperate repository over at fluentassertions/fluentAssertions.aspnetcore.mvc.

MVC 5

Add the MVC 5 NuGet package to your unit test project:

PM> Install-Package FluentAssertions.Mvc5

MVC 4

Add the MVC 4 NuGet package to your unit test project:

PM> Install-Package FluentAssertions.Mvc4

MVC 3

Add the MVC 3 NuGet package to your unit test project:

PM> Install-Package FluentAssertions.Mvc3

Getting Started

Write a unit test for your controller using one of the supported test frameworks. For exampe 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 repro and build the FluentAssertionsMvc.sln solution.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].