Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move uris tests from UnitTests into Uris.Tests #1815

Merged
merged 1 commit into from
May 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using System.Net;
using HealthChecks.Uris;
using Microsoft.AspNetCore.Http;
using RichardSzalay.MockHttp;

namespace UnitTests.Uris
namespace HealthChecks.Uris.Tests.Functional
{
public class uris_healthcheck_should
public class uris_healthcheck_should2
{
private const string RequestUri = "http://localhost/mock";
private const string hcname = "uri-healthcheck";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
<ProjectReference Include="..\..\src\HealthChecks.Uris\HealthChecks.Uris.csproj" />
</ItemGroup>

Expand Down
5 changes: 0 additions & 5 deletions test/UnitTests/UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
<None Remove="DependencyInjection\AzureServiceBus\**" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\build\docker-images\HealthChecks.UI.Image\HealthChecks.UI.Image.csproj" />
<ProjectReference Include="..\..\src\HealthChecks.ArangoDb\HealthChecks.ArangoDb.csproj" />
Expand Down Expand Up @@ -55,7 +51,6 @@
<ProjectReference Include="..\..\src\HealthChecks.UI.SQLite.Storage\HealthChecks.UI.SQLite.Storage.csproj" />
<ProjectReference Include="..\..\src\HealthChecks.UI.SqlServer.Storage\HealthChecks.UI.SqlServer.Storage.csproj" />
<ProjectReference Include="..\..\src\HealthChecks.UI\HealthChecks.UI.csproj" />
<ProjectReference Include="..\..\src\HealthChecks.Uris\HealthChecks.Uris.csproj" />
<ProjectReference Include="..\..\src\HealthChecks.Publisher.ApplicationInsights\HealthChecks.Publisher.ApplicationInsights.csproj" />
</ItemGroup>

Expand Down