FastFeed\Tests\Processor\ImagesProcessorTest::dataProvider PHP Méthode

dataProvider() public méthode

Provider
public dataProvider ( ) : array
Résultat array
    public function dataProvider()
    {
        return array(array('', array(), null), array('<html><p>no image here</p></html>', array(), null), array('<html><p><img src="http://great.image.com/image.jpg"/></p></html>', array('http://great.image.com/image.jpg'), null), array('<html><p><img alt="mi image"/></p></html>', array(), '#b.gif#'), array('<html><p><img src="http://great.image.com/b.gif"/></p></html>', array(), '#b.gif#'), array('<p><a href="http://great.image.com/image.jpg"><img src="http://great.image.com/image.jpg" /></a></p>', array('http://great.image.com/image.jpg'), null), array('<p><a href="http://great.image.com/image.jpg"><img src="http://great.image.com/image.jpg" /></a></p>' . '<p><img src="http://other.image.com/image.jpg" /></p>', array('http://great.image.com/image.jpg', 'http://other.image.com/image.jpg'), null));
    }