Skip to content

Commit

Permalink
Added Helpdesk API tests empty project
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Jun 18, 2022
1 parent 365d636 commit b3f257f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
7 changes: 7 additions & 0 deletions EventSourcing.NetCore.sln
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Helpdesk", "Helpdesk", "{DC
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Helpdesk.Api", "Sample\Helpdesk\Helpdesk.Api\Helpdesk.Api.csproj", "{7F6C6387-4933-4895-AA31-9E3CAFFAE24E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Helpdesk.Api.Tests", "Sample\Helpdesk\Helpdesk.Api.Tests\Helpdesk.Api.Tests.csproj", "{525AA67F-1D3A-4752-9A3F-A6A82819CF70}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -751,6 +753,10 @@ Global
{7F6C6387-4933-4895-AA31-9E3CAFFAE24E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7F6C6387-4933-4895-AA31-9E3CAFFAE24E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7F6C6387-4933-4895-AA31-9E3CAFFAE24E}.Release|Any CPU.Build.0 = Release|Any CPU
{525AA67F-1D3A-4752-9A3F-A6A82819CF70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{525AA67F-1D3A-4752-9A3F-A6A82819CF70}.Debug|Any CPU.Build.0 = Debug|Any CPU
{525AA67F-1D3A-4752-9A3F-A6A82819CF70}.Release|Any CPU.ActiveCfg = Release|Any CPU
{525AA67F-1D3A-4752-9A3F-A6A82819CF70}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -884,6 +890,7 @@ Global
{723AD8CE-E3EF-40F6-9576-CCF2C3DB504E} = {005FC7CE-97BA-47F7-982E-63C46327F78C}
{DC817F16-C74C-4133-B263-72ED456DB95A} = {A7186B6B-D56D-4AEF-B6B7-FAA827764C34}
{7F6C6387-4933-4895-AA31-9E3CAFFAE24E} = {DC817F16-C74C-4133-B263-72ED456DB95A}
{525AA67F-1D3A-4752-9A3F-A6A82819CF70} = {DC817F16-C74C-4133-B263-72ED456DB95A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A5F55604-2FF3-43B7-B657-4F18E6E95D3B}
Expand Down
27 changes: 27 additions & 0 deletions Sample/Helpdesk/Helpdesk.Api.Tests/Helpdesk.Api.Tests.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="NSubstitute" Version="4.3.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\Core.Testing\Core.Testing.csproj" />
<ProjectReference Include="..\Helpdesk.Api\Helpdesk.Api.csproj" />
</ItemGroup>

</Project>

0 comments on commit b3f257f

Please sign in to comment.