wallabag/tests/Import/ImportChainTest.php

24 lines
583 B
PHP
Raw Permalink Normal View History

<?php
2024-02-19 00:30:12 +00:00
namespace Tests\Wallabag\Import;
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;
2017-12-16 21:17:42 +00:00
class ImportChainTest extends TestCase
{
public function testGetAll()
{
2022-09-01 18:54:56 +00:00
$import = $this->getMockBuilder(ImportInterface::class)
->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']);
}
}