aboutsummaryrefslogblamecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle/Import/ImportChainTest.php
blob: a9a9915e9df7022813b9ddcc5513336a6b2218d3 (plain) (tree)
1
2
3

     
                                             














                                                                                       
                                                                    

     
<?php

namespace Tests\Wallabag\ImportBundle\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->assertSame($import, $importChain->getAll()['alias']);
    }
}