Should fail
This commit is contained in:
1
CommitHookTest/TestProject/MSTestSettings.cs
Normal file
1
CommitHookTest/TestProject/MSTestSettings.cs
Normal file
@@ -0,0 +1 @@
|
||||
[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]
|
||||
13
CommitHookTest/TestProject/Test1.cs
Normal file
13
CommitHookTest/TestProject/Test1.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace TestProject
|
||||
{
|
||||
[TestClass]
|
||||
public sealed class Test1
|
||||
{
|
||||
[TestMethod]
|
||||
public void TestMethod1()
|
||||
{
|
||||
Assert.Fail("intentionally failing...");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
18
CommitHookTest/TestProject/TestProject.csproj
Normal file
18
CommitHookTest/TestProject/TestProject.csproj
Normal file
@@ -0,0 +1,18 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MSTest" Version="4.0.2" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user