Files
pest/tests/Features/BeforeEach.php
Nuno Maduro de2929077b first
2020-05-11 18:38:30 +02:00

16 lines
274 B
PHP

<?php
beforeEach(function () {
$this->bar = 2;
});
it('gets executed before each test', function () {
assertEquals($this->bar, 2);
$this->bar = 'changed';
});
it('gets executed before each test once again', function () {
assertEquals($this->bar, 2);
});