application = new Application($kernel); $this->application->add(new MailTestCommand( $this->createMock(EventDispatcherInterface::class) )); } public function testCommandName(): void { $command = $this->application->find('kimai:mail:test'); self::assertInstanceOf(MailTestCommand::class, $command); } }