using System; using System.Threading.Tasks; namespace MilvusDemo { /// /// 用于运行MilvusService测试的类 /// public class TestRunner { /// /// 运行测试 /// public static async Task RunTests() { Console.WriteLine("开始运行MilvusService测试..."); var tester = new MilvusServiceTests(); await tester.RunFullTestAsync(); Console.WriteLine("测试完成!"); } } }