fix 删除单元测试

This commit is contained in:
wangkaiyi 2024-08-27 17:10:41 +08:00
parent 835ce1375b
commit e9dfd46e1d
2 changed files with 0 additions and 48 deletions

View File

@ -1,28 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="NUnit" Version="3.14.0"/>
<PackageReference Include="NUnit.Analyzers" Version="3.9.0"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
</ItemGroup>
<ItemGroup>
<Using Include="NUnit.Framework"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MasstransferCommon\MasstransferCommon.csproj" />
</ItemGroup>
</Project>

View File

@ -1,20 +0,0 @@
using MasstransferCommon.Utils;
namespace TestProject1;
public class Tests
{
private string file_path = @"C:\Users\wangkaiyi\Downloads\JetBrains2023.1.zip";
private string b = "5181b067ead5386800c291b70b2c9456";
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
var a = Md5Util.Md5ForZipFile(file_path);
Console.WriteLine(a);
}
}