Skip to content

Commit 759a44b

Browse files
committed
Moved interfaces from main namespaces
1 parent 167d9b2 commit 759a44b

File tree

17 files changed

+18
-5
lines changed

17 files changed

+18
-5
lines changed

src/MyTested.AspNetCore.Mvc.Caching/Caching/CachingTestPlugin.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using Internal.Application;
66
using Microsoft.Extensions.Caching.Memory;
77
using Microsoft.Extensions.DependencyInjection;
8+
using Plugins;
89

910
public class CachingTestPlugin : IServiceRegistrationPlugin
1011
{

src/MyTested.AspNetCore.Mvc.Core/IControllerBuilder.cs renamed to src/MyTested.AspNetCore.Mvc.Core/Builders/Contracts/Controllers/IControllerBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MyTested.AspNetCore.Mvc
1+
namespace MyTested.AspNetCore.Mvc.Builders.Contracts.Controllers
22
{
33
using System;
44
using System.Collections.Generic;

src/MyTested.AspNetCore.Mvc.Core/IRouteTestBuilder.cs renamed to src/MyTested.AspNetCore.Mvc.Core/Builders/Contracts/Routes/IRouteTestBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MyTested.AspNetCore.Mvc
1+
namespace MyTested.AspNetCore.Mvc.Builders.Contracts.Routes
22
{
33
using System;
44
using Builders.Contracts.Http;

src/MyTested.AspNetCore.Mvc.Core/Internal/Application/TestApplication.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
using Microsoft.Extensions.Logging;
3030
using Microsoft.Extensions.ObjectPool;
3131
using Microsoft.Extensions.PlatformAbstractions;
32+
using Plugins;
3233
using Routes;
3334
using Utilities.Extensions;
3435

src/MyTested.AspNetCore.Mvc.Core/Internal/TestHelper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using Microsoft.AspNetCore.Mvc;
1010
using Microsoft.AspNetCore.Mvc.Infrastructure;
1111
using Microsoft.AspNetCore.Mvc.Internal;
12+
using Plugins;
1213

1314
public static class TestHelper
1415
{

src/MyTested.AspNetCore.Mvc.Core/MyMvc.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
using System;
44
using Builders;
55
using Builders.Contracts.Application;
6+
using Builders.Contracts.Controllers;
7+
using Builders.Contracts.Routes;
68
using Builders.Controllers;
79
using Builders.Routes;
810
using Internal.Application;

src/MyTested.AspNetCore.Mvc.Core/IDefaultRegistrationPlugin.cs renamed to src/MyTested.AspNetCore.Mvc.Core/Plugins/IDefaultRegistrationPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MyTested.AspNetCore.Mvc
1+
namespace MyTested.AspNetCore.Mvc.Plugins
22
{
33
using System;
44
using Microsoft.Extensions.DependencyInjection;

src/MyTested.AspNetCore.Mvc.Core/IHttpFeatureRegistrationPlugin.cs renamed to src/MyTested.AspNetCore.Mvc.Core/Plugins/IHttpFeatureRegistrationPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MyTested.AspNetCore.Mvc
1+
namespace MyTested.AspNetCore.Mvc.Plugins
22
{
33
using System;
44
using Microsoft.AspNetCore.Http;

src/MyTested.AspNetCore.Mvc.Core/IServiceRegistrationPlugin.cs renamed to src/MyTested.AspNetCore.Mvc.Core/Plugins/IServiceRegistrationPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MyTested.AspNetCore.Mvc
1+
namespace MyTested.AspNetCore.Mvc.Plugins
22
{
33
using System;
44
using Microsoft.Extensions.DependencyInjection;

src/MyTested.AspNetCore.Mvc.DataAnnotations/DataAnnotations/DataAnnotationsTestPlugin.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{
33
using System;
44
using Microsoft.Extensions.DependencyInjection;
5+
using Plugins;
56

67
public class DataAnnotationsTestPlugin : IDefaultRegistrationPlugin
78
{

0 commit comments

Comments
 (0)