1 | <?php |
||
18 | abstract class AbstractCommandTest extends PHPUnit_Framework_TestCase |
||
19 | { |
||
20 | use TraceableCommandTestingCapabilities; |
||
21 | use TestCommandExecutionCapabilities; |
||
22 | |||
23 | /** |
||
24 | * @var ContainerInterface |
||
25 | */ |
||
26 | protected $container; |
||
27 | /** |
||
28 | * @var TestKernel |
||
29 | */ |
||
30 | protected $kernel; |
||
31 | |||
32 | public function setUp() |
||
43 | |||
44 | public function tearDown() |
||
48 | |||
49 | /** |
||
50 | * @return MessageBus |
||
51 | */ |
||
52 | protected function getCommandBus(): MessageBus |
||
56 | } |
||
57 |