-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
|
||
<IsPackable>false</IsPackable> | ||
<IsTestProject>true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" /> | ||
<PackageReference Include="coverlet.collector" Version="3.2.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
global using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
Check failure on line 1 in FFTCG_test/GlobalUsings.cs GitHub Actions / build
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace FFTCG_test | ||
{ | ||
[TestClass] | ||
Check failure on line 3 in FFTCG_test/UnitTest1.cs GitHub Actions / build
Check failure on line 3 in FFTCG_test/UnitTest1.cs GitHub Actions / build
Check failure on line 3 in FFTCG_test/UnitTest1.cs GitHub Actions / build
|
||
public class UnitTest1 | ||
{ | ||
[TestMethod] | ||
Check failure on line 6 in FFTCG_test/UnitTest1.cs GitHub Actions / build
Check failure on line 6 in FFTCG_test/UnitTest1.cs GitHub Actions / build
Check failure on line 6 in FFTCG_test/UnitTest1.cs GitHub Actions / build
|
||
public void TestMethod1() | ||
{ | ||
} | ||
} | ||
} |