Switch to MSTest
This commit is contained in:
parent
b4c1d45ac9
commit
2c9e40f63e
5 changed files with 19 additions and 29 deletions
|
@ -2,7 +2,7 @@
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Iceshrimp.Backend", "Iceshrimp.Backend\Iceshrimp.Backend.csproj", "{74D636F2-3A0B-4214-B302-178C3D5525F5}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Iceshrimp.Backend", "Iceshrimp.Backend\Iceshrimp.Backend.csproj", "{74D636F2-3A0B-4214-B302-178C3D5525F5}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Iceshrimp.Tests", "Iceshrimp.Tests\Iceshrimp.Tests.csproj", "{6321DFB0-9F35-4C0E-A4DA-CD90E6920E80}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Iceshrimp.Tests", "Iceshrimp.Tests\Iceshrimp.Tests.csproj", "{0C93C33B-3D68-41DE-8BD6-2C19EB1C95F7}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
@ -14,9 +14,9 @@ Global
|
||||||
{74D636F2-3A0B-4214-B302-178C3D5525F5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{74D636F2-3A0B-4214-B302-178C3D5525F5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{74D636F2-3A0B-4214-B302-178C3D5525F5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{74D636F2-3A0B-4214-B302-178C3D5525F5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{74D636F2-3A0B-4214-B302-178C3D5525F5}.Release|Any CPU.Build.0 = Release|Any CPU
|
{74D636F2-3A0B-4214-B302-178C3D5525F5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{6321DFB0-9F35-4C0E-A4DA-CD90E6920E80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{0C93C33B-3D68-41DE-8BD6-2C19EB1C95F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{6321DFB0-9F35-4C0E-A4DA-CD90E6920E80}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{0C93C33B-3D68-41DE-8BD6-2C19EB1C95F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{6321DFB0-9F35-4C0E-A4DA-CD90E6920E80}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{0C93C33B-3D68-41DE-8BD6-2C19EB1C95F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{6321DFB0-9F35-4C0E-A4DA-CD90E6920E80}.Release|Any CPU.Build.0 = Release|Any CPU
|
{0C93C33B-3D68-41DE-8BD6-2C19EB1C95F7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
9
Iceshrimp.Tests/Cryptography/LdSignatures.cs
Normal file
9
Iceshrimp.Tests/Cryptography/LdSignatures.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
namespace Iceshrimp.Tests.Cryptography;
|
||||||
|
|
||||||
|
[TestClass]
|
||||||
|
public class LdSignatures {
|
||||||
|
[TestMethod]
|
||||||
|
public void TestMethod1() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -1 +1 @@
|
||||||
global using Xunit;
|
global using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
@ -10,20 +10,10 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0"/>
|
||||||
<PackageReference Include="xunit" Version="2.6.3" />
|
<PackageReference Include="MSTest.TestAdapter" Version="3.0.4"/>
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5">
|
<PackageReference Include="MSTest.TestFramework" Version="3.0.4"/>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
|
||||||
<PrivateAssets>all</PrivateAssets>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
||||||
<PrivateAssets>all</PrivateAssets>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\Iceshrimp.Backend\Iceshrimp.Backend.csproj" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
namespace Iceshrimp.Tests;
|
|
||||||
|
|
||||||
public class UnitTest1
|
|
||||||
{
|
|
||||||
[Fact]
|
|
||||||
public void Test1() {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue