2015-12-31 10:24:46 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Import;
|
2015-12-31 10:24:46 +00:00
|
|
|
|
2017-12-16 21:17:42 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Import\ImportChain;
|
|
|
|
use Wallabag\Import\ImportInterface;
|
2015-12-31 10:24:46 +00:00
|
|
|
|
2017-12-16 21:17:42 +00:00
|
|
|
class ImportChainTest extends TestCase
|
2015-12-31 10:24:46 +00:00
|
|
|
{
|
|
|
|
public function testGetAll()
|
|
|
|
{
|
2022-09-01 18:54:56 +00:00
|
|
|
$import = $this->getMockBuilder(ImportInterface::class)
|
2015-12-31 10:24:46 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$importChain = new ImportChain();
|
|
|
|
$importChain->addImport($import, 'alias');
|
|
|
|
|
|
|
|
$this->assertCount(1, $importChain->getAll());
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame($import, $importChain->getAll()['alias']);
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|
|
|
|
}
|