wallabag/tests/Import/ImportChainTest.php

24 lines
583 B
PHP
Raw Normal View History

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