Exemplo n.º 1
0
 public function testIsAllowedShippingMethod()
 {
     $mockedShippingMethods = "intraship_intraship";
     $this->store->setConfig('intraship/dhlonlineretoure/allowed_shipping_methods', $mockedShippingMethods);
     $this->assertTrue($this->config->isAllowedShippingMethod("intraship_intraship"));
     $this->assertFalse($this->config->isAllowedShippingMethod("flatrate_flatrate"));
 }