Example #1
0
 public function testGetCountryTranslation()
 {
     $this->assertNull($this->listsModel->getCountryTranslation(null));
 }
 public function testGetCountryTranslation()
 {
     $locale = new \Magento\Framework\Locale('en');
     $this->mockLocaleResolver->expects($this->once())->method('getLocale')->will($this->returnValue($locale));
     $this->assertFalse($this->listsModel->getCountryTranslation(null));
 }