Ionite
1 year ago
4 changed files with 44 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||||||
|
<Project Sdk="Microsoft.NET.Sdk"> |
||||||
|
|
||||||
|
<PropertyGroup> |
||||||
|
<TargetFramework>net6.0-windows10.0.17763.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="Moq" Version="4.18.4" /> |
||||||
|
<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> |
||||||
|
|
||||||
|
<ItemGroup> |
||||||
|
<ProjectReference Include="..\StabilityMatrix\StabilityMatrix.csproj" /> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
</Project> |
@ -0,0 +1,13 @@ |
|||||||
|
using StabilityMatrix; |
||||||
|
|
||||||
|
namespace StabilityMatrix.Tests; |
||||||
|
|
||||||
|
[TestClass] |
||||||
|
public class UnitTest1 |
||||||
|
{ |
||||||
|
[TestMethod] |
||||||
|
public void TestMethod1() |
||||||
|
{ |
||||||
|
Assert.IsTrue(true); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
global using Microsoft.VisualStudio.TestTools.UnitTesting; |
Loading…
Reference in new issue