26 lines
564 B
C#
Raw Normal View History

2023-08-31 22:12:09 +02:00
using LukanPOM.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LukanPOM.Tests
{
2023-09-01 17:46:12 +02:00
[Parallelizable(ParallelScope.All)] // v mém případě zakomentovaným paraller test, test proběhl rychleji!
2023-08-31 22:12:09 +02:00
internal class ParallelTest : TestBase
{
[Test]
public void AcceptCookieTest()
{
Home.AcceptCookie();
}
[Test]
public void DeclineCookieTest()
{
HomeTwo.DeclineCookie2();
}
}
}