You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,20 +13,22 @@ It is strongly advised to start with the [tutorial](http://docs.mytestedasp.net/
13
13
14
14
You can install this library using NuGet into your test project (or reference it directly in your `project.json` file). Currently MyTested.AspNetCore.Mvc works with ASP.NET Core MVC 1.0.0.
15
15
16
-
Install-Package MyTested.AspNetCore.Mvc -Pre
16
+
Install-Package MyTested.AspNetCore.Mvc.Universe
17
17
18
-
This package will include all available assertion methods in your test project. If you prefer, you can be more specific by including only some of the features:
18
+
This package will include all available assertion methods in your test project, including ones for authentication, database, session, caching and more. If you want only the MVC related features, install `MyTested.AspNetCore.Mvc`. Additionally, if you prefer, you can be more specific by including only some of the packages:
19
19
20
20
-`MyTested.AspNetCore.Mvc.Controllers` - contains setup and assertion methods for controllers
21
21
-`MyTested.AspNetCore.Mvc.Routing` - contains setup and assertion methods for routes
22
22
-`MyTested.AspNetCore.Mvc.Core` - contains setup and assertion methods for MVC core features
23
23
-`MyTested.AspNetCore.Mvc.TempData` - contains setup and assertion methods for `ITempDataDictionary`
24
24
-`MyTested.AspNetCore.Mvc.ViewData` - contains assertion methods for `ViewDataDictionary` and dynamic `ViewBag`
25
25
-`MyTested.AspNetCore.Mvc.ViewActionResults` - contains setup and assertion methods for view action results
26
+
-`MyTested.AspNetCore.Mvc.ViewComponents` - contains setup and assertion methods for view components
26
27
-`MyTested.AspNetCore.Mvc.ViewFeatures` - contains setup and assertion methods for MVC view features
27
28
-`MyTested.AspNetCore.Mvc.Http` - contains setup and assertion methods for HTTP context, request and response
28
29
-`MyTested.AspNetCore.Mvc.Authentication` - contains setup methods for `ClaimsPrincipal`
29
-
-`MyTested.AspNetCore.Mvc.DataAnnotations` - contains setup and assertion methods for `ModelState` validations
30
+
-`MyTested.AspNetCore.Mvc.ModelState` - contains setup and assertion methods for `ModelStateDictionary` validations
31
+
-`MyTested.AspNetCore.Mvc.DataAnnotations` - contains setup and assertion methods for data annotation validations
30
32
-`MyTested.AspNetCore.Mvc.EntityFrameworkCore` - contains setup and assertion methods for `DbContext`
31
33
-`MyTested.AspNetCore.Mvc.DependencyInjection` - contains setup methods for dependency injection services
32
34
-`MyTested.AspNetCore.Mvc.Caching` - contains setup and assertion methods for `IMemoryCache`
0 commit comments