Skip to content

Commit 362b836

Browse files
author
Petr Sramek
committed
moved using to GlovalUsings.cs
1 parent a463456 commit 362b836

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

tests/PolylineAlgorithm.DependencyInjection.Tests/GlobalUsings.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

6-
global using Microsoft.VisualStudio.TestTools.UnitTesting;
6+
global using Microsoft.Extensions.DependencyInjection;
7+
global using Microsoft.VisualStudio.TestTools.UnitTesting;
8+
global using PolylineAlgorithm.Encoding;

tests/PolylineAlgorithm.DependencyInjection.Tests/ServiceCollectionExtensionsTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
//
55

66
namespace PolylineAlgorithm.DependencyInjection.Tests {
7-
using Microsoft.Extensions.DependencyInjection;
8-
using PolylineAlgorithm.Encoding;
97

108
[TestClass]
119
public class ServiceCollectionExtensionsTests {

tests/PolylineAlgorithm.Tests/CoordinateValidatorTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
//
55

66
namespace PolylineAlgorithm.Tests {
7-
using PolylineAlgorithm.Internal;
87

98
/// <summary>
109
/// Defines the <see cref="CoordinateValidatorTest" />

tests/PolylineAlgorithm.Tests/GlobalUsings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@
44
//
55

66
global using Microsoft.VisualStudio.TestTools.UnitTesting;
7+
global using PolylineAlgorithm.Internal;
78
global using System;
9+
global using System.Collections.Generic;
10+
global using System.Linq;

tests/PolylineAlgorithm.Tests/PolylineAlgorithmTest.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
//
55

66
namespace PolylineAlgorithm.Tests {
7-
using Microsoft.VisualStudio.TestTools.UnitTesting;
8-
using System;
9-
using System.Collections.Generic;
10-
using System.Linq;
117

128
/// <summary>
139
/// Defines the <see cref="PolylineAlgorithmTest" />

0 commit comments

Comments
 (0)