for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Browser\Tests\Fixture;
use Zenstruck\Browser\Component;
/**
* @author Kevin Bond <[email protected]>
*/
final class TestComponent2 extends Component
{
public bool $preActionsCalled = false;
public bool $preAssertionsCalled = false;
protected function preActions(): void
$this->preActionsCalled = true;
}
protected function preAssertions(): void
$this->preAssertionsCalled = true;