Exemplo n.º 1
0
 public function testGetAllowedShippingMethods()
 {
     $mockedShippingMethods = "intraship_intraship,flatrate_flatrate";
     $this->store->setConfig('intraship/dhlonlineretoure/allowed_shipping_methods', $mockedShippingMethods);
     $this->assertEquals(explode(",", $mockedShippingMethods), $this->config->getAllowedShippingMethods());
     $this->assertNotNull($this->config->getAllowedShippingMethods());
 }