Skip to content

Commit 1c6fc4b

Browse files
committed
Adjust namespaces - FluentAssertions.Mvc => FluentAssertions.AspNetCore.Mvc
1 parent ebbbe8d commit 1c6fc4b

22 files changed

+108
-110
lines changed
File renamed without changes.

samples/FluentAssertions.AspNetCore.Mvc.Sample.Tests/ProductController_Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using FluentAssertions.AspNetCore.Mvc.Sample.Controllers;
22
using NUnit.Framework;
33

4-
namespace FluentAssertions.Mvc.Samples.Tests
4+
namespace FluentAssertions.AspNetCore.Mvc.Sample.Tests
55
{
66
[TestFixture]
77
public class ProductController_Tests
@@ -10,7 +10,7 @@ public class ProductController_Tests
1010
public void List_ShouldReturnView()
1111
{
1212
var controller = new ProductController();
13-
controller.List().Should()
13+
controller.List().Should()
1414
.BeViewResult()
1515
.WithViewName("Index");
1616
}

samples/FluentAssertions.AspNetCore.Mvc.Sample/Services/IProductService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using FluentAssertions.AspNetCore.Mvc.Sample.Models;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
2+
using FluentAssertions.AspNetCore.Mvc.Sample.Models;
33

4-
namespace FluentAssertions.Mvc.Samples.Services
4+
namespace FluentAssertions.AspNetCore.Mvc.Sample.Services
55
{
66
public interface IProductService
77
{

samples/FluentAssertions.AspNetCore.Mvc.Sample/Services/ProductService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using FluentAssertions.AspNetCore.Mvc.Sample.Models;
33

4-
namespace FluentAssertions.Mvc.Samples.Services
4+
namespace FluentAssertions.AspNetCore.Mvc.Sample.Services
55
{
66
public class ProductService : IProductService
77
{

src/FluentAssertions.AspNetCore.Mvc/ActionResultAssertions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Diagnostics;
2-
using FluentAssertions.Primitives;
32
using FluentAssertions.Execution;
3+
using FluentAssertions.Primitives;
44
using Microsoft.AspNetCore.Mvc;
55

6-
namespace FluentAssertions.Mvc
6+
namespace FluentAssertions.AspNetCore.Mvc
77
{
88
/// <summary>
99
/// Contains a number of methods to assert that an <see cref="ActionResult"/> is in the expected state.

src/FluentAssertions.AspNetCore.Mvc/AssertionsExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.AspNetCore.Mvc;
33
using Microsoft.AspNetCore.Routing;
44

5-
namespace FluentAssertions.Mvc
5+
namespace FluentAssertions.AspNetCore.Mvc
66
{
77
/// <summary>
88
/// Contains extension methods for custom assertions in unit tests.

src/FluentAssertions.AspNetCore.Mvc/ContentResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using FluentAssertions.Primitives;
44
using Microsoft.AspNetCore.Mvc;
55

6-
namespace FluentAssertions.Mvc
6+
namespace FluentAssertions.AspNetCore.Mvc
77
{
88
/// <summary>
99
/// Contains a number of methods to assert that a <see cref="ContentResult"/> is in the expected state.

src/FluentAssertions.AspNetCore.Mvc/ControllerAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Diagnostics;
22

3-
namespace FluentAssertions.Mvc
3+
namespace FluentAssertions.AspNetCore.Mvc
44
{
55
[DebuggerNonUserCode]
66
public class ControllerAssertions

src/FluentAssertions.AspNetCore.Mvc/FailureMessages.Designer.cs

Lines changed: 3 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/FluentAssertions.AspNetCore.Mvc/PartialViewResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using FluentAssertions.Primitives;
44
using Microsoft.AspNetCore.Mvc;
55

6-
namespace FluentAssertions.Mvc
6+
namespace FluentAssertions.AspNetCore.Mvc
77
{
88
public class PartialViewResultAssertions : ObjectAssertions
99
{

0 commit comments

Comments
 (0)