getMockBuilder('Wallabag\ImportBundle\Import\ImportInterface') ->disableOriginalConstructor() ->getMock(); $importChain = new ImportChain(); $importChain->addImport($import, 'alias'); $this->assertCount(1, $importChain->getAll()); $this->assertSame($import, $importChain->getAll()['alias']); } }