mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
15 lines
346 B
PHP
15 lines
346 B
PHP
<?php
|
|
|
|
beforeEach(function () {
|
|
$this->description = $this->__description;
|
|
$this->latestDescription = self::$__latestDescription;
|
|
});
|
|
|
|
test('description', function () {
|
|
expect($this->description)->toBe('description');
|
|
});
|
|
|
|
test('latest description', function () {
|
|
expect($this->latestDescription)->toBe('latest description');
|
|
});
|