Skip to content

Commit b2b75ec

Browse files
authored
Cleanup MSTestAdapter.PlatformServices.UnitTests (#6866)
1 parent 95e1c6b commit b2b75ec

17 files changed

+31
-117
lines changed

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Deployment/DeploymentItemTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
using TestFramework.ForTestingMSTest;
1010

11-
namespace MSTestAdapter.PlatformServices.Tests.Deployment;
11+
namespace MSTestAdapter.PlatformServices.UnitTests.Deployment;
1212

1313
public class DeploymentItemTests : TestContainer
1414
{

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Deployment/TestRunDirectoriesTests.cs

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

88
using TestFramework.ForTestingMSTest;
99

10-
namespace MSTestAdapter.PlatformServices.Tests.Deployment;
10+
namespace MSTestAdapter.PlatformServices.UnitTests.Deployment;
1111

1212
public class TestRunDirectoriesTests : TestContainer
1313
{

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Extensions/ExceptionExtensionsTests.cs

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

1212
using UTF = Microsoft.VisualStudio.TestTools.UnitTesting;
1313

14-
namespace MSTestAdapter.PlatformServices.Tests.Extensions;
14+
namespace MSTestAdapter.PlatformServices.UnitTests.Extensions;
1515

1616
public class ExceptionExtensionsTests : TestContainer
1717
{

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#endif
1111

1212
#if NETCOREAPP
13-
using MSTestAdapter.PlatformServices.Tests.Services;
14-
using MSTestAdapter.PlatformServices.Tests.Utilities;
13+
using MSTestAdapter.PlatformServices.UnitTests.Services;
14+
using MSTestAdapter.PlatformServices.UnitTests.Utilities;
1515

1616
[assembly: ReflectionUtilityTests.DummyA("a1")]
1717
[assembly: ReflectionUtilityTests.DummyA("a2")]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
using MSTestAdapter.PlatformServices.Tests.Services;
4+
using MSTestAdapter.PlatformServices.UnitTests.Services;
55

66
[assembly: ReflectionOperationsTests.DummyA("a1")]
77
[assembly: ReflectionOperationsTests.DummyA("a2")]

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Services/DesktopTestDeploymentTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
using Moq;
1414

15-
using MSTestAdapter.PlatformServices.Tests.Utilities;
15+
using MSTestAdapter.PlatformServices.UnitTests.Utilities;
1616

1717
using TestFramework.ForTestingMSTest;
1818

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Services/FileOperationsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
using TestFramework.ForTestingMSTest;
1010

11-
namespace MSTestAdapter.PlatformServices.Tests.Services;
11+
namespace MSTestAdapter.PlatformServices.UnitTests.Services;
1212

1313
public class FileOperationsTests : TestContainer
1414
{

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Services/ReflectionOperationsTests.cs

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

88
using TestFramework.ForTestingMSTest;
99

10-
namespace MSTestAdapter.PlatformServices.Tests.Services;
10+
namespace MSTestAdapter.PlatformServices.UnitTests.Services;
1111

1212
public class ReflectionOperationsTests : TestContainer
1313
{

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Services/TestDeploymentTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@
1313

1414
using Moq;
1515

16-
using MSTestAdapter.PlatformServices.Tests.Utilities;
1716
using MSTestAdapter.PlatformServices.UnitTests.Utilities;
1817

1918
using TestFramework.ForTestingMSTest;
2019

21-
namespace MSTestAdapter.PlatformServices.Tests.Services;
20+
namespace MSTestAdapter.PlatformServices.UnitTests.Services;
2221

2322
public class TestDeploymentTests : TestContainer
2423
{

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/Services/TestSourceHostTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
using TestFramework.ForTestingMSTest;
1010

11-
namespace MSTestAdapter.PlatformServices.Tests.Services;
11+
namespace MSTestAdapter.PlatformServices.UnitTests.Services;
1212
#pragma warning disable SA1649 // SA1649FileNameMustMatchTypeName
1313

1414
public class TestSourceHostTests : TestContainer

0 commit comments

Comments
 (0)