2015-12-31 10:24:46 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\ImportBundle\Import;
|
2015-12-31 10:24:46 +00:00
|
|
|
|
|
|
|
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']);
|
|
|
|
}
|
|
|
|
}
|