테스트 프로젝트 추가

This commit is contained in:
2025-09-04 23:01:57 +09:00
parent 697fa36e11
commit 3f1b164c81
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace BrokerDogTest;
[TestClass]
public sealed class BrokerDogTest
{
[TestMethod]
public void TestMethod()
{
Assert.IsTrue(true);
}
}

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest" Version="3.6.4" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1 @@
[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]