Skip to content

Commit 6809cc0

Browse files
author
unknown
committed
Updated usings in plugins tests (#183)
1 parent 718ae71 commit 6809cc0

File tree

11 files changed

+17
-26
lines changed

11 files changed

+17
-26
lines changed

test/MyTested.AspNetCore.Mvc.Caching.Test/PluginsTests/CachingTestPluginTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
22
{
3+
using System;
34
using Microsoft.Extensions.Caching.Memory;
45
using Microsoft.Extensions.DependencyInjection;
56
using Plugins;
6-
using System;
7-
using System.Linq;
87
using Xunit;
98

109
public class CachingTestPluginTest

test/MyTested.AspNetCore.Mvc.Controllers.Test/PluginsTests/ControllersTestPluginTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
22
{
3-
using Microsoft.AspNetCore.Mvc.Controllers;
3+
using System;
44
using Microsoft.AspNetCore.Mvc.Internal;
55
using Microsoft.Extensions.DependencyInjection;
66
using Microsoft.Extensions.Options;
77
using Plugins;
8-
using System;
9-
using System.Linq;
108
using Xunit;
119

1210
public class ControllersTestPluginTest

test/MyTested.AspNetCore.Mvc.Controllers.Views.Test/PluginTests/ViewActionResultTestPluginTest.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace MyTested.AspNetCore.Mvc.Test.PluginTests
6-
{
1+
namespace MyTested.AspNetCore.Mvc.Test.PluginTests
2+
{
3+
using System;
74
using Microsoft.AspNetCore.Mvc.Formatters.Json.Internal;
85
using Microsoft.Extensions.DependencyInjection;
96
using Plugins;
10-
using System;
11-
using System.Linq;
127
using Xunit;
138

149
public class ViewActionResultTestPluginTest

test/MyTested.AspNetCore.Mvc.DataAnnotations.Test/PluginsTests/DataAnnotationsTestPluginTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
2-
{
2+
{
3+
using System;
34
using Microsoft.AspNetCore.Mvc.DataAnnotations;
45
using Microsoft.Extensions.DependencyInjection;
56
using Plugins;
6-
using System;
7-
using System.Linq;
87
using Xunit;
8+
99
public class DataAnnotationsTestPluginTest
1010
{
1111
[Fact]

test/MyTested.AspNetCore.Mvc.Http.Test/PluginsTests/HttpTestPluginTest.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
2-
{
2+
{
3+
using System;
34
using Microsoft.AspNetCore.Mvc.Formatters.Json.Internal;
45
using Microsoft.Extensions.DependencyInjection;
56
using Microsoft.Extensions.Options;
67
using Plugins;
7-
using System;
8-
using System.Linq;
98
using Xunit;
109

1110
public class HttpTestPluginTest

test/MyTested.AspNetCore.Mvc.Options.Test/PluginsTests/OptionsTestPluginTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
22
{
3+
using System;
34
using Microsoft.Extensions.DependencyInjection;
45
using Microsoft.Extensions.Options;
56
using Plugins;
6-
using System;
77
using Xunit;
88

99
public class OptionsTestPluginTest

test/MyTested.AspNetCore.Mvc.Routing.Test/PlungsTests/RoutingTestPluginTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PlungsTests
22
{
3+
using System;
34
using Microsoft.AspNetCore.Mvc.Formatters.Json.Internal;
45
using Microsoft.Extensions.DependencyInjection;
56
using MyTested.AspNetCore.Mvc.Internal.Contracts;
67
using Plugins;
7-
using System;
88
using Xunit;
99

1010
public class RoutingTestPluginTest

test/MyTested.AspNetCore.Mvc.TempData.Test/PluginsTests/TempDataTestPluginTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
2-
{
2+
{
3+
using System;
34
using Microsoft.AspNetCore.Mvc.Formatters.Json.Internal;
45
using Microsoft.AspNetCore.Mvc.ViewFeatures;
56
using Microsoft.Extensions.DependencyInjection;
67
using Plugins;
7-
using System;
88
using Xunit;
99

1010
public class TempDataTestPluginTest

test/MyTested.AspNetCore.Mvc.ViewComponents.Test/PluginsTests/ViewComponentsTestPluginTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
22
{
3+
using System;
34
using Microsoft.AspNetCore.Mvc.Formatters.Json.Internal;
45
using Microsoft.Extensions.DependencyInjection;
56
using MyTested.AspNetCore.Mvc.Internal.Contracts;
67
using Plugins;
7-
using System;
88
using Xunit;
99

1010
public class ViewComponentsTestPluginTest

test/MyTested.AspNetCore.Mvc.ViewData.Test/PluginsTests/ViewDataTestPluginTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
namespace MyTested.AspNetCore.Mvc.Test.PluginsTests
22
{
3+
using System;
34
using Microsoft.AspNetCore.Mvc.Formatters.Json.Internal;
45
using Microsoft.Extensions.DependencyInjection;
56
using Plugins;
6-
using System;
77
using Xunit;
88

99
public class ViewDataTestPluginTests

0 commit comments

Comments
 (0)