Skip to content

Commit

Permalink
Sort Utilities and Common
Browse files Browse the repository at this point in the history
  • Loading branch information
Tratcher committed May 29, 2021
1 parent 00241e9 commit bc541b7
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Discovery;
using Yarp.ReverseProxy.Utilities.Tests;

namespace Yarp.ReverseProxy.Common
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</ItemGroup>

<ItemGroup>
<Compile Include="..\ReverseProxy.Tests\Utilities\TestResources.cs" Link="Utilities\TestResources.cs" />
<Compile Include="..\ReverseProxy.Tests\Common\TestResources.cs" Link="Common\TestResources.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace Yarp.ReverseProxy.Utilities.Tests
namespace Yarp.ReverseProxy.Common.Tests
{
/// <summary>
/// Extensions for the <see cref="Task"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using System.Threading;
using Xunit;

namespace Yarp.ReverseProxy.Utilities.Tests
namespace Yarp.ReverseProxy.Common.Tests
{
public static class TestResources
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
using System.Collections.Generic;
using System.Threading;
using Xunit;
using Yarp.ReverseProxy.Utilities;

namespace Yarp.ReverseProxy.Utilities.Tests
namespace Yarp.ReverseProxy.Common.Tests
{
internal class TestTimerFactory : ITimerFactory, IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
using Microsoft.Extensions.Options;
using Moq;
using Xunit;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Discovery;
using Yarp.ReverseProxy.Model;
using Yarp.ReverseProxy.Utilities;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Microsoft.Extensions.Logging;
using Moq;
using Xunit;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Discovery;
using Yarp.ReverseProxy.Model;
using Yarp.ReverseProxy.Utilities;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading;
using System.Threading.Tasks;
using Xunit;
using Yarp.ReverseProxy.Utilities;
using Yarp.ReverseProxy.Common.Tests;

namespace Yarp.ReverseProxy.Health.Tests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
using Microsoft.Extensions.DependencyInjection.Extensions;
using Moq;
using Xunit;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Discovery;
using Yarp.ReverseProxy.Discovery.Configuration;
using Yarp.ReverseProxy.Health;
Expand Down
1 change: 0 additions & 1 deletion test/ReverseProxy.Tests/Proxy/HttpProxyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
using Moq;
using Xunit;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Utilities;

namespace Yarp.ReverseProxy.Proxy.Tests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Xunit;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Utilities.Tests;

namespace Yarp.ReverseProxy.Transforms.Tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Xunit;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Utilities.Tests;

namespace Yarp.ReverseProxy.Transforms.Tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Features;
using Xunit;
using Yarp.ReverseProxy.Common.Tests;
using Yarp.ReverseProxy.Utilities.Tests;

namespace Yarp.ReverseProxy.Transforms.Tests
Expand Down

0 comments on commit bc541b7

Please sign in to comment.