aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle/Import/ImportChainTest.php
blob: 32568ce53a0b9bd7391ec32f6e5be65cc6773a1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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->assertEquals($import, $importChain->getAll()['alias']);
    }
}