ApiPlatform\SchemaGenerator\Tests\GenerateTypesCommandTest::testCommand PHP Method

testCommand() public method

public testCommand ( $output, $config )
    public function testCommand($output, $config)
    {
        $this->fs->mkdir($output);
        $commandTester = new CommandTester(new GenerateTypesCommand());
        $this->assertEquals(0, $commandTester->execute(['output' => $output, 'config' => $config]));
    }
GenerateTypesCommandTest