-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStopCommandFactoryTest.php
More file actions
39 lines (30 loc) · 1.02 KB
/
StopCommandFactoryTest.php
File metadata and controls
39 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
namespace QueueTest\Swoole\Command\Factory;
use PHPUnit\Framework\MockObject\Exception;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerInterface;
use Queue\Swoole\Command\Factory\StopCommandFactory;
use Queue\Swoole\Command\StopCommand;
use Queue\Swoole\PidManager;
class StopCommandFactoryTest extends TestCase
{
/**
* @throws Exception
*/
public function testFactoryReturnsStopCommandInstance(): void
{
if (! \extension_loaded('swoole')) {
$this->markTestSkipped('Swoole extension not loaded.');
}
$pidManager = $this->createMock(PidManager::class);
$container = $this->createMock(ContainerInterface::class);
$container->expects($this->once())
->method('get')
->with(PidManager::class)
->willReturn($pidManager);
$factory = new StopCommandFactory();
$command = $factory($container);
$this->assertContainsOnlyInstancesOf(StopCommand::class, [$command]);
}
}