Skip to content

Commit

Permalink
feat : integration test project init
Browse files Browse the repository at this point in the history
  • Loading branch information
sefatanam committed Sep 20, 2021
1 parent 6f1783c commit 0d966ed
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ZCommerce.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{DEE77649
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZCommerce.Application.UnitTests", "tests\ZCommerce.Application.UnitTests\ZCommerce.Application.UnitTests.csproj", "{D99C8316-4143-4778-BAD6-F0F7CAB72C18}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZCommerce.Application.IntegrationTests", "tests\ZCommerce.Application.IntegrationTests\ZCommerce.Application.IntegrationTests.csproj", "{0B260E7E-556E-4118-B822-A2BF9440C799}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -40,12 +42,17 @@ Global
{D99C8316-4143-4778-BAD6-F0F7CAB72C18}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D99C8316-4143-4778-BAD6-F0F7CAB72C18}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D99C8316-4143-4778-BAD6-F0F7CAB72C18}.Release|Any CPU.Build.0 = Release|Any CPU
{0B260E7E-556E-4118-B822-A2BF9440C799}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0B260E7E-556E-4118-B822-A2BF9440C799}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0B260E7E-556E-4118-B822-A2BF9440C799}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0B260E7E-556E-4118-B822-A2BF9440C799}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{DDFA88DE-0B56-460A-84DD-B9796E9FA191} = {597AB28C-9C00-42FC-9A73-8D4617BEE469}
{9C62476E-4DEC-44C8-83F0-71E964DC0BBC} = {597AB28C-9C00-42FC-9A73-8D4617BEE469}
{460BBAF6-F27B-4DF8-8B29-34A82E28B5FC} = {597AB28C-9C00-42FC-9A73-8D4617BEE469}
{B6DB2B63-85E7-4DDB-93D8-D9F30E573044} = {597AB28C-9C00-42FC-9A73-8D4617BEE469}
{D99C8316-4143-4778-BAD6-F0F7CAB72C18} = {DEE77649-16A0-4CA2-836C-163C67532CE5}
{0B260E7E-556E-4118-B822-A2BF9440C799} = {DEE77649-16A0-4CA2-836C-163C67532CE5}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

</Project>

0 comments on commit 0d966ed

Please sign in to comment.