14 lines
407 B
C#
14 lines
407 B
C#
using Xunit;
|
|
|
|
namespace MembershipService.FunctionalTests;
|
|
|
|
/// <summary>
|
|
/// EN: Collection definition for sequential test execution.
|
|
/// VI: Định nghĩa collection cho chạy tests tuần tự.
|
|
/// Prevents Serilog logger freeze issue when running parallel.
|
|
/// </summary>
|
|
[CollectionDefinition("Sequential")]
|
|
public class SequentialTestCollection : ICollectionFixture<CustomWebApplicationFactory>
|
|
{
|
|
}
|