CookiesTest

@TestMethodOrder(value = MethodOrderer.OrderAnnotation::class)
abstract class CookiesTest(clientAdapter: () -> HttpClientPort, serverAdapter: () -> HttpServerPort, serverSettings: HttpServerSettings = HttpServerSettings()) : BaseTest

Constructors

Link copied to clipboard
constructor(clientAdapter: () -> HttpClientPort, serverAdapter: () -> HttpServerPort, serverSettings: HttpServerSettings = HttpServerSettings())

Functions

Link copied to clipboard
@BeforeEach
fun clearCookies()
Link copied to clipboard
@Test
@Order(value = 6)
fun Cookies contain correct values()
@Test
@Order(value = 1)
fun Empty cookies assures there is no cookies()
Link copied to clipboard
@Test
@Order(value = 5)
fun Full cookie lifecycle()
Link copied to clipboard
@Test
@Order(value = 3)
fun Remove cookie deletes the given cookie()
@Test
@Order(value = 4)
fun Remove not available cookie does not fail()
Link copied to clipboard
@AfterAll
fun shutDown()
Link copied to clipboard
@BeforeAll
fun startUp()