PopTest\Feed\ReaderTest::testManualAccounts PHP Method

testManualAccounts() public method

public testManualAccounts ( )
    public function testManualAccounts()
    {
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Rss\Twitter(array('url' => 'http://twitter.com/highvoltagenola'), 4)));
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Atom\Facebook(array('id' => '49700389248'), 4)));
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Atom\Facebook(array('name' => 'highvoltagenola'), 4)));
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Atom\Flickr(array('id' => '96247146@N00'), 4)));
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Json\Facebook(array('id' => '49700389248'), 4)));
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Json\Facebook(array('name' => 'highvoltagenola'), 4)));
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Json\Youtube(array('id' => '35318AF7BEB5DD11'), 4)));
        $this->assertInstanceOf('Pop\\Feed\\Reader', new Feed\Reader(new Feed\Format\Php\Flickr(array('id' => '96247146@N00'), 4)));
    }