Compare commits
1 Commits
042f633603
...
56334d6a64
| Author | SHA1 | Date | |
|---|---|---|---|
| 56334d6a64 |
1
WarhoundTest/MSTestSettings.cs
Normal file
1
WarhoundTest/MSTestSettings.cs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]
|
||||||
11
WarhoundTest/Test1.cs
Normal file
11
WarhoundTest/Test1.cs
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
namespace WarhoundTest
|
||||||
|
{
|
||||||
|
[TestClass]
|
||||||
|
public sealed class Test1
|
||||||
|
{
|
||||||
|
[TestMethod]
|
||||||
|
public void TestMethod1()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
WarhoundTest/WarhoundTest.csproj
Normal file
15
WarhoundTest/WarhoundTest.csproj
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<Project Sdk="MSTest.Sdk/3.6.4">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<LangVersion>latest</LangVersion>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<!--
|
||||||
|
Displays error on console in addition to the log file. Note that this feature comes with a performance impact.
|
||||||
|
For more information, visit https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#show-failure-per-test
|
||||||
|
-->
|
||||||
|
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
Reference in New Issue
Block a user