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

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

    public function testParseValidUtf8AuthorString()
    {
        $command = new InitCommand();
        $author = $command->parseAuthorString('Matti Meikäläinen <[email protected]>');
        $this->assertEquals('Matti Meikäläinen', $author['name']);
        $this->assertEquals('[email protected]', $author['email']);
    }