.Net_Test/PlaywrightProject/PlaywrightTests/UnitTest1.cs
2023-08-24 19:31:32 +02:00

15 lines
169 B
C#

namespace PlaywrightTests;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}