Skip to content

Commit b9b049a

Browse files
committed
Moved the System usings before all others.
1 parent df41d67 commit b9b049a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

test/MyTested.AspNetCore.Mvc.Controllers.Views.ActionResults.Test/BuildersTests/ActionResultsTests/JsonTests/JsonSerializerTestBuilderTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
namespace MyTested.AspNetCore.Mvc.Test.BuildersTests.ActionResultsTests.JsonTests
22
{
3+
using System;
4+
using System.Collections;
5+
using System.Collections.Generic;
6+
using System.Globalization;
37
using Exceptions;
48
using Newtonsoft.Json;
59
using Newtonsoft.Json.Serialization;
610
using Setups;
711
using Setups.Common;
812
using Setups.Controllers;
9-
using System;
10-
using System.Collections;
11-
using System.Collections.Generic;
12-
using System.Globalization;
1313
using Xunit;
1414

1515
public class JsonSerializerSettingsTestBuilderTests

test/MyTested.AspNetCore.Mvc.Controllers.Views.ActionResults.Test/BuildersTests/ActionResultsTests/ViewTests/ViewComponentTestBuilderTests.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.BuildersTests.ActionResultsTests.ViewTests
22
{
3+
using System.Collections.Generic;
34
using Exceptions;
45
using Setups;
56
using Setups.Controllers;
67
using Setups.Models;
7-
using System.Collections.Generic;
88
using Xunit;
99

1010
public class ViewComponentTestBuilderTests

test/MyTested.AspNetCore.Mvc.Controllers.Views.ActionResults.Test/BuildersTests/ActionsTests/ShouldReturnTests/ShouldReturnViewTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
namespace MyTested.AspNetCore.Mvc.Test.BuildersTests.ActionsTests.ShouldReturnTests
22
{
3+
using System.Collections.Generic;
34
using Exceptions;
45
using Microsoft.AspNetCore.Mvc;
56
using Setups;
67
using Setups.Controllers;
78
using Setups.Models;
8-
using System.Collections.Generic;
99
using Xunit;
1010

1111
public class ShouldReturnViewTests

0 commit comments

Comments
 (0)