Skip to content

Commit 9cc4d80

Browse files
committed
Enabled to run RemoteApp unit test at CI build time
1 parent be48699 commit 9cc4d80

20 files changed

+39
-31
lines changed

AzurePowershell.Test.targets

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<StreamAnalyticsManagerTestDebug>.\src\ResourceManager\StreamAnalytics\Commands.StreamAnalytics.Test\bin\Debug\Microsoft.Azure.Commands.StreamAnalytics.Test.dll</StreamAnalyticsManagerTestDebug>
1818
<BatchTestDebug>.\src\ResourceManager\Batch\Commands.Batch.Test\bin\Debug\Microsoft.Azure.Commands.Batch.Test.dll</BatchTestDebug>
1919
<WebsitesTestDebug>.\src\ResourceManager\Websites\Commands.Websites.Test\bin\Debug\Microsoft.Azure.Commands.Websites.Test.dll</WebsitesTestDebug>
20+
<RemoteAppTestDebug>.\src\ServiceManagement\RemoteApp\Commands.RemoteApp.Test\bin\Debug\Microsoft.Azure.Commands.RemoteApp.Tests.dll</RemoteAppTestDebug>
2021
<ServiceManagementTestDebug>.\src\ServiceManagement\Compute\Commands.ServiceManagement.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Test.dll</ServiceManagementTestDebug>
2122
<ServiceManagementExtensionsTestDebug>.\src\ServiceManagement\Compute\Commands.ServiceManagement.Extensions.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.Test.dll</ServiceManagementExtensionsTestDebug>
2223
<SqlDatabaseTestDebug>.\src\ServiceManagement\Sql\Commands.SqlDatabase.Test\bin\Debug\Microsoft.WindowsAzure.Commands.SqlDatabase.Test.dll</SqlDatabaseTestDebug>
@@ -44,6 +45,7 @@
4445
<XUnitTests Include=".\src\ResourceManager\Websites\Commands.Websites.Test\bin\Debug\Microsoft.Azure.Commands.Websites.Test.dll"/>
4546
<XUnitTests Include=".\src\ResourceManager\KeyVault\Commands.KeyVault.Test\bin\Debug\Microsoft.Azure.Commands.KeyVault.Test.dll"/>
4647
<XUnitTests Include=".\src\ServiceManagement\ManagedCache\Commands.ManagedCache.Test\bin\Debug\Microsoft.Azure.Commands.ManagedCache.Test.dll"/>
48+
<XUnitTests Include=".\src\ServiceManagement\RemoteApp\Commands.RemoteApp.Test\bin\Debug\Microsoft.Azure.Commands.RemoteApp.Tests.dll"/>
4749
<XUnitTests Include=".\src\Common\Commands.ScenarioTest\bin\Debug\Microsoft.WindowsAzure.Commands.ScenarioTest.dll"/>
4850
<XUnitTests Include=".\src\ServiceManagement\RecoveryServices\Commands.RecoveryServices.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServices.Test.dll"/>
4951
<XUnitTests Include=".\src\ServiceManagement\StorSimple\Commands.StorSimple.Test\bin\Debug\Microsoft.WindowsAzure.Commands.StorSimple.Test.dll"/>
@@ -93,6 +95,11 @@
9395
</Target>
9496

9597

98+
<Target Name="TestRemoteApp">
99+
<Xunit.Runner.MSBuild.xunit Assemblies="$(RemoteAppTestDebug)" Html="$(TestOutputDirectory)\RemoteAppTestDebug.xunit.dll.html" Verbose="false"
100+
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
101+
</Target>
102+
96103
<Target Name="TestWebsites">
97104
<Xunit.Runner.MSBuild.xunit Assemblies="$(WebsitesTestDebug)" Html="$(TestOutputDirectory)\WebsitesTestDebug.xunit.dll.html" Verbose="false"
98105
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />

src/AzurePowershell.sln

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2013
3-
VisualStudioVersion = 12.0.31101.0MinimumVisualStudioVersion = 10.0.40219.1
3+
VisualStudioVersion = 12.0.31101.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
45
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8531411A-0137-4E27-9C5E-49E07C245048}"
56
ProjectSection(SolutionItems) = preProject
67
local.runsettings = local.runsettings
@@ -164,12 +165,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Insights.Test", "R
164165
EndProject
165166
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Websites", "ResourceManager\Websites\Commands.Websites\Commands.Websites.csproj", "{80A92297-7C92-456B-8EE7-9FB6CE30149D}"
166167
EndProject
167-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RemoteApp.Test", "ServiceManagement\RemoteApp\Commands.RemoteApp.Tests\Commands.RemoteApp.Test.csproj", "{CA82D500-1940-4068-A076-D7A8AD459FB0}"
168-
EndProject
169168
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Websites.Test", "ResourceManager\Websites\Commands.Websites.Test\Commands.Websites.Test.csproj", "{13E031E4-8A43-4B87-9D72-D70180C31C11}"
170169
EndProject
171170
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RemoteApp", "ServiceManagement\RemoteApp\Commands.RemoteApp\Commands.RemoteApp.csproj", "{492D2AF2-950B-4F2E-8079-8794305313FD}"
172171
EndProject
172+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RemoteApp.Test", "ServiceManagement\RemoteApp\Commands.RemoteApp.Test\Commands.RemoteApp.Test.csproj", "{CA82D500-1940-4068-A076-D7A8AD459FB0}"
173+
EndProject
173174
Global
174175
GlobalSection(SolutionConfigurationPlatforms) = preSolution
175176
Debug|Any CPU = Debug|Any CPU
@@ -408,23 +409,24 @@ Global
408409
{80A92297-7C92-456B-8EE7-9FB6CE30149D}.Debug|Any CPU.Build.0 = Debug|Any CPU
409410
{80A92297-7C92-456B-8EE7-9FB6CE30149D}.Release|Any CPU.ActiveCfg = Release|Any CPU
410411
{80A92297-7C92-456B-8EE7-9FB6CE30149D}.Release|Any CPU.Build.0 = Release|Any CPU
411-
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
412-
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Debug|Any CPU.Build.0 = Debug|Any CPU
413-
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Release|Any CPU.ActiveCfg = Release|Any CPU
414-
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Release|Any CPU.Build.0 = Release|Any CPU
415-
{492D2AF2-950B-4F2E-8079-8794305313FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
416-
{492D2AF2-950B-4F2E-8079-8794305313FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
417-
{492D2AF2-950B-4F2E-8079-8794305313FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
418-
{492D2AF2-950B-4F2E-8079-8794305313FD}.Release|Any CPU.Build.0 = Release|Any CPU
419412
{13E031E4-8A43-4B87-9D72-D70180C31C11}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
420413
{13E031E4-8A43-4B87-9D72-D70180C31C11}.Debug|Any CPU.Build.0 = Debug|Any CPU
421414
{13E031E4-8A43-4B87-9D72-D70180C31C11}.Release|Any CPU.ActiveCfg = Release|Any CPU
422415
{13E031E4-8A43-4B87-9D72-D70180C31C11}.Release|Any CPU.Build.0 = Release|Any CPU
416+
{492D2AF2-950B-4F2E-8079-8794305313FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
417+
{492D2AF2-950B-4F2E-8079-8794305313FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
418+
{492D2AF2-950B-4F2E-8079-8794305313FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
419+
{492D2AF2-950B-4F2E-8079-8794305313FD}.Release|Any CPU.Build.0 = Release|Any CPU
420+
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
421+
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Debug|Any CPU.Build.0 = Debug|Any CPU
422+
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Release|Any CPU.ActiveCfg = Release|Any CPU
423+
{CA82D500-1940-4068-A076-D7A8AD459FB0}.Release|Any CPU.Build.0 = Release|Any CPU
423424
EndGlobalSection
424425
GlobalSection(SolutionProperties) = preSolution
425426
HideSolutionNode = FALSE
426427
EndGlobalSection
427428
GlobalSection(NestedProjects) = preSolution
429+
{B7FD03F6-98BC-4F54-9A14-0455E579FCD4} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
428430
{37455286-D8A7-4E0C-8B4D-C517D20C641A} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
429431
{D6F470A6-7395-4B8B-9D29-44DF0EC8F624} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
430432
{A3965B66-5A3E-4B8C-9574-28E5958D4828} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
@@ -435,7 +437,6 @@ Global
435437
{4BC0E3D3-6EDD-43AA-8F15-DCFED8ACC93D} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
436438
{9D5A40CA-5594-4F5C-8230-7ADF7CC0558E} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
437439
{3B48A77B-5956-4A62-9081-92BA04B02B27} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
438-
{B7FD03F6-98BC-4F54-9A14-0455E579FCD4} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
439440
{4C2FE49A-09E1-4979-AD46-CD64FD04C8F7} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
440441
{374D4000-DEDE-4995-9B63-E3B9FE0C4D29} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
441442
{127D0D51-FDEA-4E1A-8CD8-34DEB5C2F7F6} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
@@ -453,7 +454,7 @@ Global
453454
{0FA676D5-1349-4086-B33F-65EC2CB7DA41} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
454455
{7E6683BE-ECFF-4709-89EB-1325E9E70512} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
455456
{469F20E0-9D40-41AD-94C3-B47AD15A4C00} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
456-
{CA82D500-1940-4068-A076-D7A8AD459FB0} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
457457
{13E031E4-8A43-4B87-9D72-D70180C31C11} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
458+
{CA82D500-1940-4068-A076-D7A8AD459FB0} = {95C16AED-FD57-42A0-86C3-2CF4300A4817}
458459
EndGlobalSection
459460
EndGlobal

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Collection/RemoteAppCollection.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Collection/RemoteAppCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// ----------------------------------------------------------------------------------
1414

1515

16-
namespace Microsoft.Azure.Commands.Test.RemoteApp
16+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1717
{
1818
using Common;
1919
using Microsoft.Azure.Management.RemoteApp.Cmdlets;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Commands.RemoteApp.Test.csproj renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{CA82D500-1940-4068-A076-D7A8AD459FB0}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>Commands.RemoteApp.Tests</RootNamespace>
11-
<AssemblyName>Commands.RemoteApp.Tests</AssemblyName>
10+
<RootNamespace>Microsoft.Azure.Commands.RemoteApp.Tests</RootNamespace>
11+
<AssemblyName>Microsoft.Azure.Commands.RemoteApp.Tests</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/CollectionObjects.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/CollectionObjects.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using Microsoft.Azure.Management.RemoteApp;
1818
using Microsoft.Azure.Management.RemoteApp.Models;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/MockObject.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/MockObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using Microsoft.Azure;
1818
using Microsoft.Azure.Management.RemoteApp.Cmdlets;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/OperationResult.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/OperationResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using Microsoft.Azure.Management.RemoteApp;
1818
using Microsoft.Azure.Management.RemoteApp.Models;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/RemoteApp.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteApp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using Microsoft.Azure.Management.RemoteApp;
1818
using Microsoft.Azure.Management.RemoteApp.Models;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/RemoteAppClient.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1616
{
1717
using Microsoft.Azure.Management.RemoteApp;
1818
using Microsoft.Azure.Management.RemoteApp.Cmdlets;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/TemplateObjects.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/TemplateObjects.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using Microsoft.Azure;
1818
using Microsoft.Azure.Management.RemoteApp;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/UserObjects.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/UserObjects.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using LocalModels;
1818
using Microsoft.Azure.Management.RemoteApp;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/VNetObjects.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/VNetObjects.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using Microsoft.Azure.Management.RemoteApp;
1818
using Microsoft.Azure.Management.RemoteApp.Models;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Common/Workspace.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/Workspace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp.Common
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test.Common
1616
{
1717
using Microsoft.Azure;
1818
using Microsoft.Azure.Management.RemoteApp;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1616
{
1717
using Common;
1818
using Microsoft.Azure.Management.RemoteApp.Cmdlets;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/RemoteProgram/RemoteAppProgram.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/RemoteProgram/RemoteAppProgram.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1616
{
1717
using Common;
1818
using Microsoft.Azure.Management.RemoteApp.Cmdlets;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1616
{
1717
using LocalModels;
1818
using Common;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Templates/RemoteAppTemplates.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Templates/RemoteAppTemplates.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1616
{
1717
using Common;
1818
using Microsoft.Azure.Management.RemoteApp.Cmdlets;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/VNet/RemoteAppVNet.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/VNet/RemoteAppVNet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1616
{
1717
using Common;
1818
using Microsoft.Azure.Management.RemoteApp.Cmdlets;

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Tests/Workspace/RemoteAppWorkspace.cs renamed to src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Workspace/RemoteAppWorkspace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Test.RemoteApp
15+
namespace Microsoft.Azure.Commands.RemoteApp.Test
1616
{
1717
using Common;
1818
using Microsoft.Azure.Management.RemoteApp.Cmdlets;

0 commit comments

Comments
 (0)