objectManagerHelper = new ObjectManager($this); $this->listMock = $this->getMockBuilder(\Magento\Framework\View\Design\Theme\Label\ListInterface::class) ->disableOriginalConstructor() ->setMethods(['getLabels']) ->getMock(); $this->object = $this->objectManagerHelper->getObject($this->getClassName(), [ 'themeList' => $this->listMock, ]); } /** * @return string */ protected function getClassName() { return \Magento\Cms\Model\Page\Source\Theme::class; } /** * @param array $options * @param array $expected * @return void * @dataProvider getOptionsDataProvider */ public function testToOptionArray(array $options, array $expected) { $this->listMock->expects($this->once()) ->method('getLabels') ->willReturn($options); $this->assertEquals($expected, $this->object->toOptionArray()); } /** * @return array */ public function getOptionsDataProvider() { return [ [ [], [['label' => 'Default', 'value' => '']], ], [ [['label' => 'testValue', 'value' => 'testStatus']], [['label' => 'Default', 'value' => ''], ['label' => 'testValue', 'value' => 'testStatus']], ], ]; } }