| 1 | <?php |
||
| 16 | abstract class AbstractCommandTest extends PHPUnit_Framework_TestCase |
||
| 17 | { |
||
| 18 | use TraceableCommandTestingCapabilities; |
||
| 19 | use TestCommandExecutionCapabilities; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var ContainerInterface |
||
| 23 | */ |
||
| 24 | protected $container; |
||
| 25 | /** |
||
| 26 | * @var TestKernel |
||
| 27 | */ |
||
| 28 | protected $kernel; |
||
| 29 | |||
| 30 | public function setUp() |
||
| 41 | |||
| 42 | public function tearDown() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return MessageBus |
||
| 49 | */ |
||
| 50 | protected function getCommandBus(): MessageBus |
||
| 54 | } |
||
| 55 |