添加注释添加项目文件。
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MilvusDemo
|
||||
{
|
||||
/// <summary>
|
||||
/// 用于运行MilvusService测试的类
|
||||
/// </summary>
|
||||
public class TestRunner
|
||||
{
|
||||
/// <summary>
|
||||
/// 运行测试
|
||||
/// </summary>
|
||||
public static async Task RunTests()
|
||||
{
|
||||
Console.WriteLine("开始运行MilvusService测试...");
|
||||
|
||||
var tester = new MilvusServiceTests();
|
||||
await tester.RunFullTestAsync();
|
||||
|
||||
Console.WriteLine("测试完成!");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user