Skip to content

Commit 62f75c2

Browse files
committed
Fixes
1 parent cc7016c commit 62f75c2

File tree

79 files changed

+123
-204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+123
-204
lines changed

MSTest.slnf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"test\\IntegrationTests\\TestAssets\\TimeoutTestProject\\TimeoutTestProject.csproj",
5050
"test\\Performance\\MSTest.Performance.Runner\\MSTest.Performance.Runner.csproj",
5151
"test\\UnitTests\\MSTest.Analyzers.UnitTests\\MSTest.Analyzers.UnitTests.csproj",
52-
"test\\UnitTests\\MSTestAdapter.PlatformServices.UnitTests\\MSTestAdapter.PlatformServices.UnitTests.csproj",
52+
"test\\UnitTests\\MSTest.PlatformServices.UnitTests\\MSTest.PlatformServices.UnitTests.csproj",
5353
"test\\UnitTests\\MSTest.TestAdapter.UnitTests\\MSTest.TestAdapter.UnitTests.csproj",
5454
"test\\UnitTests\\MSTest.SelfRealExamples.UnitTests\\MSTest.SelfRealExamples.UnitTests.csproj",
5555
"test\\UnitTests\\MSTest.TestFramework.UnitTests\\MSTest.TestFramework.UnitTests.csproj",

TestFx.slnx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
<Project Path="test/UnitTests/MSTest.Engine.UnitTests/MSTest.Engine.UnitTests.csproj" />
128128
<Project Path="test/UnitTests/MSTest.SelfRealExamples.UnitTests/MSTest.SelfRealExamples.UnitTests.csproj" />
129129
<Project Path="test/UnitTests/MSTest.SourceGeneration.UnitTests/MSTest.SourceGeneration.UnitTests.csproj" />
130-
<Project Path="test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/MSTestAdapter.PlatformServices.UnitTests.csproj" />
130+
<Project Path="test/UnitTests/MSTest.PlatformServices.UnitTests/MSTest.PlatformServices.UnitTests.csproj" />
131131
<Project Path="test/UnitTests/MSTest.TestAdapter.UnitTests/MSTest.TestAdapter.UnitTests.csproj" />
132132
<Project Path="test/UnitTests/MSTest.TestFramework.UnitTests/MSTest.TestFramework.UnitTests.csproj" />
133133
</Folder>

src/Adapter/MSTestAdapter.PlatformServices/MSTestAdapter.PlatformServices.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" Key="$(MoqPublicKey)" />
4343
<InternalsVisibleTo Include="MSTest.TestAdapter" Key="$(VsPublicKey)" />
4444
<InternalsVisibleTo Include="MSTest.TestAdapter.UnitTests" Key="$(VsPublicKey)" />
45-
<InternalsVisibleTo Include="MSTestAdapter.PlatformServices.UnitTests" Key="$(VsPublicKey)" />
45+
<InternalsVisibleTo Include="MSTest.PlatformServices.UnitTests" Key="$(VsPublicKey)" />
4646
<InternalsVisibleTo Include="MSTest.PlatformServices.IntegrationTests" Key="$(VsPublicKey)" />
4747
<InternalsVisibleTo Include="MSTest.IntegrationTests" Key="$(VsPublicKey)" />
4848
</ItemGroup>

src/TestFramework/TestFramework.Extensions/TestFramework.Extensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
<ItemGroup>
9292
<InternalsVisibleTo Include="MSTest.TestAdapter" Key="$(VsPublicKey)" />
9393
<InternalsVisibleTo Include="MSTestAdapter.PlatformServices" Key="$(VsPublicKey)" />
94-
<InternalsVisibleTo Include="MSTestAdapter.PlatformServices.UnitTests" Key="$(VsPublicKey)" />
94+
<InternalsVisibleTo Include="MSTest.PlatformServices.UnitTests" Key="$(VsPublicKey)" />
9595
</ItemGroup>
9696

9797
<ItemGroup>

src/TestFramework/TestFramework/TestFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<InternalsVisibleTo Include="MSTest.TestAdapter.UnitTests" Key="$(VsPublicKey)" />
4444
<InternalsVisibleTo Include="MSTest.TestFramework.Extensions" Key="$(VsPublicKey)" />
4545
<InternalsVisibleTo Include="MSTest.TestFramework.UnitTests" Key="$(VsPublicKey)" />
46-
<InternalsVisibleTo Include="MSTestAdapter.PlatformServices.UnitTests" Key="$(VsPublicKey)" />
46+
<InternalsVisibleTo Include="MSTest.PlatformServices.UnitTests" Key="$(VsPublicKey)" />
4747
</ItemGroup>
4848

4949
<ItemGroup>
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 MSTest.PlatformServices.Tests.Services;
55

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

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/AssemblyResolverTests.cs renamed to test/UnitTests/MSTest.PlatformServices.UnitTests/AssemblyResolverTests.cs

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

77
using TestFramework.ForTestingMSTest;
88

9-
namespace MSTestAdapter.PlatformServices.UnitTests;
9+
namespace MSTest.PlatformServices.UnitTests;
1010

1111
public class AssemblyResolverTests : TestContainer
1212
{
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using TestFramework.ForTestingMSTest;
1111

12-
namespace MSTestAdapter.PlatformServices.UnitTests.Deployment;
12+
namespace MSTest.PlatformServices.Deployment.UnitTests;
1313

1414
public class AssemblyLoadWorkerTests : TestContainer
1515
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
using TestFramework.ForTestingMSTest;
88

9-
namespace MSTestAdapter.PlatformServices.Tests.Deployment;
9+
namespace MSTest.PlatformServices.Deployment.UnitTests;
1010

1111
public class DeploymentItemTests : TestContainer
1212
{

0 commit comments

Comments
 (0)