Skip to content

Commit 540ece7

Browse files
committed
Namespace changed to FluentAssertions.Mvc
1 parent 9e3a56e commit 540ece7

38 files changed

+55
-57
lines changed

samples/FluentAssertions.Mvc3.Samples/Controllers/ProductController.cs

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

3-
namespace FluentAssertions.Mvc3.Samples.Controllers
3+
namespace FluentAssertions.Mvc.Samples.Controllers
44
{
55
public class ProductController : Controller
66
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<%@ Application Codebehind="Global.asax.cs" Inherits="FluentAssertions.Mvc3.Samples.MvcApplication" Language="C#" %>
1+
<%@ Application Codebehind="Global.asax.cs" Inherits="FluentAssertions.Mvc.Samples.MvcApplication" Language="C#" %>

samples/FluentAssertions.Mvc3.Samples/Global.asax.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Web.Mvc;
66
using System.Web.Routing;
77

8-
namespace FluentAssertions.Mvc3.Samples
8+
namespace FluentAssertions.Mvc.Samples
99
{
1010
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
1111
// visit http://go.microsoft.com/?LinkId=9394801

samples/FluentAssertions.Mvc3.Samples/Models/ProductViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
namespace FluentAssertions.Mvc3.Samples.Models
2+
namespace FluentAssertions.Mvc.Samples.Models
33
{
44
public class ProductViewModel
55
{

samples/FluentAssertions.Mvc3.Samples/Services/IProductService.cs

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

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

samples/FluentAssertions.Mvc3.Samples/Services/ProductService.cs

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

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

samples/FluentAssertions.Mvc3.Samples/Tests/ProductController_Tests.cs

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

4-
namespace FluentAssertions.Mvc3.Samples.Tests
4+
namespace FluentAssertions.Mvc.Samples.Tests
55
{
66
[TestFixture]
77
public class ProductController_Tests

samples/FluentAssertions.Mvc3.Samples/Tests/Route_Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Web.Routing;
22
using NUnit.Framework;
33

4-
namespace FluentAssertions.Mvc3.Samples.Tests
4+
namespace FluentAssertions.Mvc.Samples.Tests
55
{
66
[TestFixture]
77
public class Route_Tests

src/FluentAssertions.Mvc3/ActionResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Web.Mvc;
55
using System.Diagnostics;
66

7-
namespace FluentAssertions.Mvc3
7+
namespace FluentAssertions.Mvc
88
{
99
[DebuggerNonUserCode]
1010
public class ActionResultAssertions : ObjectAssertions

src/FluentAssertions.Mvc3/AssertionsExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using FluentAssertions;
22
using System;
33
using System.Web.Mvc;
4-
using FluentAssertions.Mvc3;
4+
using FluentAssertions.Mvc;
55
using System.Web.Routing;
66
using System.Diagnostics;
77

8-
namespace FluentAssertions.Mvc3
8+
namespace FluentAssertions.Mvc
99
{
1010
[DebuggerNonUserCode]
1111
public static class AssertionsExtensions

0 commit comments

Comments
 (0)