collectionFactory = $this->createPartialMock( \Magento\Cms\Model\ResourceModel\Page\CollectionFactory::class, ['create'] ); $this->page = $objectManager->getObject( \Magento\Cms\Model\Config\Source\Page::class, [ 'collectionFactory' => $this->collectionFactory, ] ); } /** * Run test toOptionArray method * * @return void */ public function testToOptionArray() { $pageCollectionMock = $this->createMock(\Magento\Cms\Model\ResourceModel\Page\Collection::class); $this->collectionFactory->expects($this->once()) ->method('create') ->will($this->returnValue($pageCollectionMock)); $pageCollectionMock->expects($this->once()) ->method('toOptionIdArray') ->will($this->returnValue('return-value')); $this->assertEquals('return-value', $this->page->toOptionArray()); } }