--TEST-- Single Application can be executed --FILE-- setCode(function (InputInterface $input, OutputInterface $output): int { $output->writeln('Hello World!'); return 0; }) ->run() ; ?> --EXPECT-- Hello World!