mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
17 lines
356 B
PHP
17 lines
356 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Traits\Macroable;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
uses(Macroable::class);
|
|
|
|
beforeEach()->macro('bar', function () {
|
|
assertInstanceOf(TestCase::class, $this);
|
|
});
|
|
|
|
it('can call chained macro method')->bar();
|
|
|
|
it('will throw exception from call if no macro exists')
|
|
->throws(BadMethodCallException::class)
|
|
->foo();
|