10 lines
206 B
C#
10 lines
206 B
C#
using Xunit;
|
|
|
|
namespace JdeScoping.Ui.Tests.Support;
|
|
|
|
[CollectionDefinition(Name)]
|
|
public sealed class UiTestCollection : ICollectionFixture<PlaywrightFixture>
|
|
{
|
|
public const string Name = "UiTests";
|
|
}
|