Skip to content

Commit

Permalink
Merge pull request #3 from JaloliddinDeveloper/users/JaloliddinDevelo…
Browse files Browse the repository at this point in the history
…per/infra-unit-test-init

INFRA: UsefulTime Unit Test Project Initialize
  • Loading branch information
JaloliddinDeveloper authored May 24, 2024
2 parents 30dee87 + e84add2 commit a160832
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
12 changes: 12 additions & 0 deletions UsefulTime.Unit.Tests/DeleteMe.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//==================================================
// Copyright (c) Coalition Of Good-Hearted Engineers
// Free To Use To Find Comfort And Peace
//==================================================
namespace UsefulTime.Unit.Tests
{
public class DeleteMe
{
[Fact]
public void ShoulbBeTrue() => Assert.True(true);
}
}
27 changes: 27 additions & 0 deletions UsefulTime.Unit.Tests/UsefulTime.Unit.Tests.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>enable</ImplicitUsings>
<Nullable>enable</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>
<ProjectReference Include="..\UsefulTime.Api\UsefulTime.Api.csproj" />
</ItemGroup>

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

</Project>
6 changes: 6 additions & 0 deletions UsefulTime.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UsefulTime.Build.Project",
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UsefulTime.Api", "UsefulTime.Api\UsefulTime.Api.csproj", "{D7F4508D-85FA-4537-ACA3-170FAEDC9C3F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UsefulTime.Unit.Tests", "UsefulTime.Unit.Tests\UsefulTime.Unit.Tests.csproj", "{774BEDFD-03B6-4929-94F0-CB75435A48E5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -21,6 +23,10 @@ Global
{D7F4508D-85FA-4537-ACA3-170FAEDC9C3F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D7F4508D-85FA-4537-ACA3-170FAEDC9C3F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D7F4508D-85FA-4537-ACA3-170FAEDC9C3F}.Release|Any CPU.Build.0 = Release|Any CPU
{774BEDFD-03B6-4929-94F0-CB75435A48E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{774BEDFD-03B6-4929-94F0-CB75435A48E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{774BEDFD-03B6-4929-94F0-CB75435A48E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{774BEDFD-03B6-4929-94F0-CB75435A48E5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit a160832

Please sign in to comment.