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.
|
using Xunit;
|
|
|
|
namespace CncRepository.Tests
|
|
{
|
|
/// <summary>
|
|
/// 数据库测试集合定义 —— 所有测试类共享同一个数据库,必须串行执行
|
|
/// </summary>
|
|
[CollectionDefinition("Database", DisableParallelization = true)]
|
|
public class DatabaseCollection { }
|
|
}
|