Skip to content

Commit

Permalink
Merge pull request #12 from The-Standard-Organization/users/glhays/in…
Browse files Browse the repository at this point in the history
…fra-init-acceptanceproject

INFRA: Init Acceptance Test Project
  • Loading branch information
glhays authored Aug 7, 2024
2 parents 333dc46 + 4fa5812 commit 1b04a49
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@

<ItemGroup>
<InternalsVisibleTo Include="STX.Standard.CleanMock.Tests.Unit"/>
<InternalsVisibleTo Include="STX.Standard.CleanMock.Tests.Acceptance"/>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
</ItemGroup>

</Project>
13 changes: 13 additions & 0 deletions STX.Standard.CleanMock.Tests.Acceptance/DeleteMe.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// ----------------------------------------------------------------------------------
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers
// ----------------------------------------------------------------------------------

namespace STX.Standard.CleanMock.Tests.Acceptance
{
public class DeleteMe
{
[Fact]
private void ShouldBeTrue() =>
Assert.True(condition: true);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">

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

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

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

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

</Project>
8 changes: 7 additions & 1 deletion STX.Standard.CleanMock.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "STX.Standard.CleanMock.Core
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "STX.Standard.CleanMock.Infrastructure.Build", "STX.Standard.CleanMock.Infrastructure.Build\STX.Standard.CleanMock.Infrastructure.Build.csproj", "{005A9BA5-952E-44B5-9ACC-CC0A771F7ABE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "STX.Standard.CleanMock.Tests.Unit", "STX.Standard.CleanMock.Tests.Unit\STX.Standard.CleanMock.Tests.Unit.csproj", "{30DB7EFC-623B-473A-B75A-E5361F94F8D3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "STX.Standard.CleanMock.Tests.Unit", "STX.Standard.CleanMock.Tests.Unit\STX.Standard.CleanMock.Tests.Unit.csproj", "{30DB7EFC-623B-473A-B75A-E5361F94F8D3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "STX.Standard.CleanMock.Tests.Acceptance", "STX.Standard.CleanMock.Tests.Acceptance\STX.Standard.CleanMock.Tests.Acceptance.csproj", "{38FBD2E2-AE59-4AD1-A4B2-CD593553D5A8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -27,6 +29,10 @@ Global
{30DB7EFC-623B-473A-B75A-E5361F94F8D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{30DB7EFC-623B-473A-B75A-E5361F94F8D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{30DB7EFC-623B-473A-B75A-E5361F94F8D3}.Release|Any CPU.Build.0 = Release|Any CPU
{38FBD2E2-AE59-4AD1-A4B2-CD593553D5A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{38FBD2E2-AE59-4AD1-A4B2-CD593553D5A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{38FBD2E2-AE59-4AD1-A4B2-CD593553D5A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{38FBD2E2-AE59-4AD1-A4B2-CD593553D5A8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 1b04a49

Please sign in to comment.