Skip to content

Commit

Permalink
INFRA: Add Integration Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mabroukmahdhi committed Aug 11, 2024
1 parent df17858 commit 6ddf20b
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//---------------------------------------
// ---------------------------------------
// Copyright (c) 2024 Mabrouk Mahdhi.
// Made with love for the .NET Community
//---------------------------------------
// ---------------------------------------

namespace FlexiMail.Tests.Unit
namespace FlexiMail.Test.Integration
{
public class DeleteMe
{
Expand Down
27 changes: 27 additions & 0 deletions FlexiMail.Test.Integration/FlexiMail.Test.Integration.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="xunit" Version="2.5.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3"/>
</ItemGroup>

<ItemGroup>
<Using Include="Xunit"/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\FlexiMail\FlexiMail.csproj" />
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions FlexiMail.sln
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlexiMail.Tests.Unit", "Fle
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlexiMail.Infrastructure.Build", "FlexiMail.Infrastructure.Build\FlexiMail.Infrastructure.Build.csproj", "{5DDAB7DA-8535-413C-BF4E-E76FC5BF24CC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlexiMail.Test.Integration", "FlexiMail.Test.Integration\FlexiMail.Test.Integration.csproj", "{591680E9-4CF5-40CE-84C4-2F8735E1E606}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -24,5 +26,9 @@ Global
{5DDAB7DA-8535-413C-BF4E-E76FC5BF24CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5DDAB7DA-8535-413C-BF4E-E76FC5BF24CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5DDAB7DA-8535-413C-BF4E-E76FC5BF24CC}.Release|Any CPU.Build.0 = Release|Any CPU
{591680E9-4CF5-40CE-84C4-2F8735E1E606}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{591680E9-4CF5-40CE-84C4-2F8735E1E606}.Debug|Any CPU.Build.0 = Debug|Any CPU
{591680E9-4CF5-40CE-84C4-2F8735E1E606}.Release|Any CPU.ActiveCfg = Release|Any CPU
{591680E9-4CF5-40CE-84C4-2F8735E1E606}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

0 comments on commit 6ddf20b

Please sign in to comment.