scopeConfigMock = $this->getMockBuilder(\Magento\Framework\App\Config\ScopeConfigInterface::class) ->getMock(); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $arguments = [ 'scopeConfig' => $this->scopeConfigMock ]; $this->model = $objectManager ->getObject(\Magento\Directory\Model\TopDestinationCountries::class, $arguments); } /** * @dataProvider toTestGetTopDestinationsDataProvider */ public function testGetTopDestinations($options, $expectedResults) { $this->scopeConfigMock->expects($this->once())->method('getValue')->willReturn($options); $this->assertEquals($expectedResults, $this->model->getTopDestinations()); } /** * @return array */ public function toTestGetTopDestinationsDataProvider() { return [ ['UA,AF', ['UA', 'AF']], ['', []] ]; } }