Skip to content

Commit

Permalink
[wip] dev: xUnitプロジェクトを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
EbiseLutica committed Jul 17, 2024
1 parent dd1df89 commit 42262a5
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Promete.Test/CoroutineTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace Promete.Test;

public class CoroutineTests
{
[Fact]
public void Test1()
{

}
}
1 change: 1 addition & 0 deletions Promete.Test/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global using Xunit;
29 changes: 29 additions & 0 deletions Promete.Test/Promete.Test.csproj
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="Microsoft.NET.Test.Sdk" Version="17.6.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="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

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

</Project>
6 changes: 6 additions & 0 deletions Promete.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Promete.Example", "Promete.
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Promete.ImGui", "Promete.ImGui\Promete.ImGui.csproj", "{14FD4403-27F0-4F35-8F74-33C0295BACDB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Promete.Test", "Promete.Test\Promete.Test.csproj", "{7D6C9F60-C0E7-4B2C-9182-FE98EA724FE1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -25,6 +27,10 @@ Global
{14FD4403-27F0-4F35-8F74-33C0295BACDB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{14FD4403-27F0-4F35-8F74-33C0295BACDB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{14FD4403-27F0-4F35-8F74-33C0295BACDB}.Release|Any CPU.Build.0 = Release|Any CPU
{7D6C9F60-C0E7-4B2C-9182-FE98EA724FE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7D6C9F60-C0E7-4B2C-9182-FE98EA724FE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7D6C9F60-C0E7-4B2C-9182-FE98EA724FE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7D6C9F60-C0E7-4B2C-9182-FE98EA724FE1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
version = 0.7.0
Expand Down

0 comments on commit 42262a5

Please sign in to comment.