Composer\Test\Command\InitCommandTest::testParseEmptyAuthorString PHP Метод

testParseEmptyAuthorString() публичный Метод

    public function testParseEmptyAuthorString()
    {
        $command = new InitCommand();
        $this->setExpectedException('InvalidArgumentException');
        $command->parseAuthorString('');
    }