aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Tests/Import/ImportChainTest.php
blob: 702d2a9b9c496f8327553e7a984bfc3bd4440bc9 (plain) (tree)




















                                                                                       
<?php

namespace Wallabag\ImportBundle\Tests\Import;

use Wallabag\ImportBundle\Import\ImportChain;

class ImportChainTest extends \PHPUnit_Framework_TestCase
{
    public function testGetAll()
    {
        $import = $this->getMockBuilder('Wallabag\ImportBundle\Import\ImportInterface')
            ->disableOriginalConstructor()
            ->getMock();

        $importChain = new ImportChain();
        $importChain->addImport($import, 'alias');

        $this->assertCount(1, $importChain->getAll());
        $this->assertEquals($import, $importChain->getAll()['alias']);
    }
}