Skip to content

Commit

Permalink
Added core test project.
Browse files Browse the repository at this point in the history
  • Loading branch information
tacosontitan committed Mar 12, 2024
1 parent d13fedd commit 17f2752
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 98 deletions.
7 changes: 7 additions & 0 deletions Pasper.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pasper.Toml", "src\Pasper.T
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pasper.Toml.Tests", "test\Pasper.Toml.Tests\Pasper.Toml.Tests.csproj", "{AD32F58A-C91A-40F6-BC4B-BA771B00F35F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pasper.Tests", "test\Pasper.Tests\Pasper.Tests.csproj", "{B9BB71EE-0B0F-4D96-A330-EF000B65D0DB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -67,6 +69,10 @@ Global
{AD32F58A-C91A-40F6-BC4B-BA771B00F35F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AD32F58A-C91A-40F6-BC4B-BA771B00F35F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AD32F58A-C91A-40F6-BC4B-BA771B00F35F}.Release|Any CPU.Build.0 = Release|Any CPU
{B9BB71EE-0B0F-4D96-A330-EF000B65D0DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B9BB71EE-0B0F-4D96-A330-EF000B65D0DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B9BB71EE-0B0F-4D96-A330-EF000B65D0DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B9BB71EE-0B0F-4D96-A330-EF000B65D0DB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -81,6 +87,7 @@ Global
{4F0A9CE8-936F-431D-AF98-C427CD70CF99} = {7366F508-1DDD-46DB-82C0-978C5F0D1F92}
{F7A3BE69-4C91-4164-AABF-E228C44AEED7} = {7366F508-1DDD-46DB-82C0-978C5F0D1F92}
{AD32F58A-C91A-40F6-BC4B-BA771B00F35F} = {371DEE60-97EB-4754-9083-B0928ABE7695}
{B9BB71EE-0B0F-4D96-A330-EF000B65D0DB} = {371DEE60-97EB-4754-9083-B0928ABE7695}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {98BD2AB3-7CF7-4E57-A9C7-B8E50657904F}
Expand Down
14 changes: 0 additions & 14 deletions test/Pasper.Tests/IgnoreTests.cs

This file was deleted.

27 changes: 0 additions & 27 deletions test/Pasper.Tests/Mocking/MockProvider.cs

This file was deleted.

15 changes: 0 additions & 15 deletions test/Pasper.Tests/Mocking/Models/Group.cs

This file was deleted.

17 changes: 0 additions & 17 deletions test/Pasper.Tests/Mocking/Models/Person.cs

This file was deleted.

41 changes: 18 additions & 23 deletions test/Pasper.Tests/Pasper.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,29 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</PropertyGroup>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Pasper\Pasper.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<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>
<ProjectReference Include="..\..\src\Pasper\Pasper.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit"/>
</ItemGroup>

</Project>
</Project>
2 changes: 0 additions & 2 deletions test/Pasper.Tests/Usings.cs

This file was deleted.

0 comments on commit 17f2752

Please sign in to comment.