You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Xunit;
using Xunit.Abstractions;
using Xunit.Extensions;
using Xunit.Sdk;
namespace WebApiStudy.IntegrationTest
{
/// <summary>
/// 测试服务器,全局共享设置
/// </summary>
[CollectionDefinition(name:"GlobalTestServer")]
public class TestServerFixtureSetup : ICollectionFixture<TestServerFixture>
{
}
}