From 6142899fedb53373ccafe36b000f34b549f65f6c Mon Sep 17 00:00:00 2001 From: tymmkang Date: Wed, 15 Oct 2025 02:04:16 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=ED=94=84?= =?UTF-8?q?=EB=A1=9C=EC=A0=9D=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Warhound.sln | 6 ++++++ WarhoundTest/MSTestSettings.cs | 1 + WarhoundTest/Test1.cs | 11 +++++++++++ WarhoundTest/WarhoundTest.csproj | 19 +++++++++++++++++++ 4 files changed, 37 insertions(+) create mode 100644 WarhoundTest/MSTestSettings.cs create mode 100644 WarhoundTest/Test1.cs create mode 100644 WarhoundTest/WarhoundTest.csproj diff --git a/Warhound.sln b/Warhound.sln index f005e20..f453e3f 100644 --- a/Warhound.sln +++ b/Warhound.sln @@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarhoundConsole", "Warhound EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarhoundLib", "WarhoundLib\WarhoundLib.csproj", "{7E3472E9-86E9-4032-826C-0DA805C2EBCE}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarhoundTest", "WarhoundTest\WarhoundTest.csproj", "{D22BEA2A-08E9-498A-A087-FEFB8FA2AD08}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -21,6 +23,10 @@ Global {7E3472E9-86E9-4032-826C-0DA805C2EBCE}.Debug|Any CPU.Build.0 = Debug|Any CPU {7E3472E9-86E9-4032-826C-0DA805C2EBCE}.Release|Any CPU.ActiveCfg = Release|Any CPU {7E3472E9-86E9-4032-826C-0DA805C2EBCE}.Release|Any CPU.Build.0 = Release|Any CPU + {D22BEA2A-08E9-498A-A087-FEFB8FA2AD08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D22BEA2A-08E9-498A-A087-FEFB8FA2AD08}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D22BEA2A-08E9-498A-A087-FEFB8FA2AD08}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D22BEA2A-08E9-498A-A087-FEFB8FA2AD08}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/WarhoundTest/MSTestSettings.cs b/WarhoundTest/MSTestSettings.cs new file mode 100644 index 0000000..aaf278c --- /dev/null +++ b/WarhoundTest/MSTestSettings.cs @@ -0,0 +1 @@ +[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)] diff --git a/WarhoundTest/Test1.cs b/WarhoundTest/Test1.cs new file mode 100644 index 0000000..5f760ef --- /dev/null +++ b/WarhoundTest/Test1.cs @@ -0,0 +1,11 @@ +namespace WarhoundTest +{ + [TestClass] + public sealed class Test1 + { + [TestMethod] + public void TestMethod1() + { + } + } +} diff --git a/WarhoundTest/WarhoundTest.csproj b/WarhoundTest/WarhoundTest.csproj new file mode 100644 index 0000000..7fd77ca --- /dev/null +++ b/WarhoundTest/WarhoundTest.csproj @@ -0,0 +1,19 @@ + + + + net8.0 + latest + enable + enable + + true + + + + + + +