mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
16 lines
274 B
PHP
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);
|
|
});
|