ParsedownTest::testReferenceLinks PHP Méthode

    public function testReferenceLinks()
    {
        $this->uri->initializeWithURL('http://testing.dev/item2/item2-2')->init();
        $sample = '[relative link][r_relative]
                   [r_relative]: ../item2-3#blah';
        $this->assertSame('<p><a href="/item2/item2-3#blah">relative link</a></p>', $this->parsedown->text($sample));
        $sample = '[absolute link][r_absolute]
                   [r_absolute]: /item3#blah';
        $this->assertSame('<p><a href="/item3#blah">absolute link</a></p>', $this->parsedown->text($sample));
        $sample = '[external link][r_external]
                   [r_external]: http://www.cnn.com';
        $this->assertSame('<p><a href="http://www.cnn.com">external link</a></p>', $this->parsedown->text($sample));
    }