Skip to content

Commit

Permalink
chore: Move internal helpers to the same internal namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Oct 16, 2023
1 parent 3ae53a6 commit 73b443c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
using System.Threading.Tasks;
using Uno.Extensions;
using Uno.Logging;
using Uno.UI.RuntimeTests.Engine;

namespace Uno.UI.RuntimeTests.Engine;
namespace Uno.UI.RuntimeTests.Internal.Helpers;

/// <summary>
/// Helper class to start a dev server instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Uno.Extensions;
using Uno.Logging;

namespace Uno.UI.RuntimeTests.Engine;
namespace Uno.UI.RuntimeTests.Internal.Helpers;

/// <summary>
/// An helper class used by test engine tu run tests in a separate process.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Text.Json;
using System.Text.Json.Serialization;

namespace Uno.UI.RuntimeTests.Engine;
namespace Uno.UI.RuntimeTests.Internal.Helpers;

/// <summary>
/// Helper class to run tests in a secondary app.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Compile Include="$(MSBuildThisFileDirectory)Engine\UnitTestEngineConfig.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Engine\UnitTestFilter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Engine\UnitTestMethodInfo.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Engine\UI\UnitTestDispatcherCompat.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Engine\UI\_Private\UnitTestDispatcherCompat.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Engine\UI\UnitTestsControl.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Engine\UI\UnitTestsControl.CustomConsoleOutput.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Engine\UI\UnitTestsControl.TestRun.cs" />
Expand Down Expand Up @@ -58,7 +58,7 @@
</ItemGroup>
<ItemGroup>
<Folder Include="$(MSBuildThisFileDirectory)Engine\ExternalRunner\_Private\" />
<Folder Include="$(MSBuildThisFileDirectory)Engine\UI\" />
<Folder Include="$(MSBuildThisFileDirectory)Engine\UI\_Private\" />
<Folder Include="$(MSBuildThisFileDirectory)Library\_Private\" />
</ItemGroup>
</Project>

0 comments on commit 73b443c

Please sign in to comment.