factory = new ApplicationFactory(); } /** @test */ public function serviceIsCreated() { $instance = ($this->factory)($this->createServiceManager(), ''); $this->assertInstanceOf(Application::class, $instance); } /** @test */ public function allCommandsWhichAreServicesAreAdded() { $sm = $this->createServiceManager([ 'commands' => [ 'foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz', ], ]); $sm->setService('foo', $this->createCommandMock('foo')->reveal()); $sm->setService('bar', $this->createCommandMock('bar')->reveal()); /** @var Application $instance */ $instance = ($this->factory)($sm, ''); $this->assertInstanceOf(Application::class, $instance); $this->assertTrue($instance->has('foo')); $this->assertTrue($instance->has('bar')); $this->assertFalse($instance->has('baz')); } private function createServiceManager(array $config = []): ServiceManager { return new ServiceManager(['services' => [ 'config' => [ 'cli' => array_merge($config, ['locale' => 'en']), ], AppOptions::class => new AppOptions(), ]]); } private function createCommandMock(string $name): ObjectProphecy { $command = $this->prophesize(Command::class); $command->getName()->willReturn($name); $command->getDefinition()->willReturn($name); $command->isEnabled()->willReturn(true); $command->getAliases()->willReturn([]); $command->setApplication(Argument::type(Application::class))->willReturn(function () { }); return $command; } }