Exemplo n.º 1
0
 public function testGetAllowedCountryCodes()
 {
     $epnCountryCodes = 'DE';
     $bpiCountryCodes = 'BE,BG,DK,EE,FI,FR,GR,IE,IT,LV,LT,LU,MT,NL,AT,PL,PT,RO,SE,SK,SI,ES,CZ,HU,DB,CY,GB';
     $countryCodes = explode(',', "{$epnCountryCodes},{$bpiCountryCodes}");
     $this->store->setConfig('intraship/epn/countryCodes', $epnCountryCodes);
     $this->store->setConfig('intraship/bpi/countryCodes', $bpiCountryCodes);
     $this->assertEquals($countryCodes, $this->config->getAllowedCountryCodes());
 }