Skip to content

Commit

Permalink
Change tracker is now clean before test execution in 3.1 (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaylokenov committed Nov 25, 2021
1 parent 859ee57 commit 07f4030
Show file tree
Hide file tree
Showing 38 changed files with 91 additions and 63 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC Newtonsoft JSON components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.NewtonsoftJson</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC versioning components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Versioning</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,10 @@ public void IndexShouldReturnCartItemsWhenItemsInCart()
MyMvc
.Controller<ShoppingCartController>()
.WithSession(session => session.WithEntry("Session", cartId))
.WithData(db => db
.WithEntities(entities =>
{
var cartItems = CreateTestCartItems(
cartId,
itemPrice: 10,
numberOfItem: 5);

entities.AddRange(cartItems.Select(n => n.Album).Distinct());
entities.AddRange(cartItems);
}))
.WithData(CreateTestCartItems(
cartId,
itemPrice: 10,
numberOfItem: 5))
.Calling(c => c.Index())
.ShouldReturn()
.View(view => view
Expand All @@ -82,9 +75,7 @@ public void AddToCartShouldAddItemsToCart()
MyMvc
.Controller<ShoppingCartController>()
.WithSession(session => session.WithEntry("Session", "CartId_A"))
.WithData(db => db
.WithEntities(entities => entities
.AddRange(CreateTestAlbums(itemPrice: 10))))
.WithData(CreateTestAlbums(itemPrice: 10))
.Calling(c => c.AddToCart(albumId, CancellationToken.None))
.ShouldReturn()
.Redirect(redirect => redirect
Expand All @@ -109,13 +100,7 @@ public void RemoveFromCartShouldRemoveItemFromCart()
MyMvc
.Controller<ShoppingCartController>()
.WithSession(session => session.WithEntry("Session", cartId))
.WithData(db => db
.WithEntities(entities =>
{
var cartItems = CreateTestCartItems(cartId, unitPrice, numberOfItem);
entities.AddRange(cartItems.Select(n => n.Album).Distinct());
entities.AddRange(cartItems);
}))
.WithData(CreateTestCartItems(cartId, unitPrice, numberOfItem))
.Calling(c => c.RemoveFromCart(cartItemId, CancellationToken.None))
.ShouldReturn()
.Json(json => json
Expand Down Expand Up @@ -145,13 +130,7 @@ public void RemoveFromCartShouldReturnNoItemsWhenWrongCartIdIsPassed()
MyMvc
.Controller<ShoppingCartController>()
.WithSession(session => session.WithEntry("Session", cartId))
.WithData(db => db
.WithEntities(entities =>
{
var cartItems = CreateTestCartItems(cartId, unitPrice, numberOfItem);
entities.AddRange(cartItems.Select(n => n.Album).Distinct());
entities.AddRange(cartItems);
}))
.WithData(CreateTestCartItems(cartId, unitPrice, numberOfItem))
.Calling(c => c.RemoveFromCart(wrongCartItemId, CancellationToken.None))
.ShouldReturn()
.Json(json => json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void RemoveAlbumGetShouldReturnViewWithAlbum()
.Passing(model =>
{
Assert.NotNull(model);
Assert.Equal(album, model);
Assert.Equal(album.AlbumId, model.AlbumId);
}));
}

Expand Down Expand Up @@ -304,7 +304,7 @@ public void EditShouldReturnDefaultViewWithAlbum()
.Passing(model =>
{
Assert.NotNull(model);
Assert.Equal(album, model);
Assert.Equal(album.AlbumId, model.AlbumId);
}));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC common abstractions and interfaces.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Abstractions</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC authentication components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Authentication</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC caching components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Caching</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC configuration components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Configuration</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC controller action result components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Controllers.ActionResults</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC controller attribute components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Controllers.Attributes</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC controller view action result components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Controllers.Views.ActionResults</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC controller view assertion methods.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Controllers.Views</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC controller components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Controllers</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC core components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Core</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC data annotations components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.DataAnnotations</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC dependency injection components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.DependencyInjection</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ public IAndWithDbContextBuilder WithEntities<TDbContext>(Action<TDbContext> dbCo
dbContextSetup(dbContext);
dbContext.SaveChanges();

// Clear change tracker entries to clean up for the test execution.
foreach (var entry in dbContext.ChangeTracker.Entries())
{
entry.State = EntityState.Detached;
}

return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC Entity Framework Core components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.EntityFrameworkCore</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC helper components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Helpers</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC HTTP components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Http</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC licensing components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Licensing</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC is a powerful testing library providing easy fluent interface to test the ASP.NET Core MVC framework.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Lite</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC model state components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.ModelState</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC model components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Models</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC configuration options components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Options</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC pipeline components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Pipeline</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC routing components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Routing</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC session middleware components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Session</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC temporary data components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.TempData</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC is a powerful testing library providing easy fluent interface to test the ASP.NET Core MVC framework.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.Universe</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC view component attribute assertion methods.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.ViewComponents.Attributes</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC view component result assertion methods.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.ViewComponents.Results</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC view components assertion methods.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.ViewComponents</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC view data components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.ViewData</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC view features components.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc.ViewFeatures</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion src/MyTested.AspNetCore.Mvc/MyTested.AspNetCore.Mvc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>My Tested ASP.NET Core MVC is a powerful testing library providing easy fluent interface to test the ASP.NET Core MVC framework.</Description>
<Copyright>2015-2019 Ivaylo Kenov</Copyright>
<AssemblyTitle>MyTested.AspNetCore.Mvc</AssemblyTitle>
<VersionPrefix>3.1.2</VersionPrefix>
<VersionPrefix>3.1.3</VersionPrefix>
<Authors>Ivaylo Kenov</Authors>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
Loading

0 comments on commit 07f4030

Please sign in to comment.