for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace IntegerNet\SessionUnblocker\Test\Integration;
class CustomerSectionLoadControllerTest extends AbstractSessionTest
{
public function testCustomerSectionLoad()
$this->when_dispatched('customer/section/load');
$this->then_sessions_have_been_started_and_closed_before_action();
}
public function testCustomerSectionLoadNoWrites()
$this->given_session_already_exists();
$this->then_sessions_have_not_been_modified_after_write();