Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | protected function setUp() |
||
18 | { |
||
19 | $carrier = $this->getMockBuilder('Meanbee\MagentoRoyalmail\Model\Carrier') |
||
20 | ->disableOriginalConstructor() |
||
21 | ->setMethods(['getMethods']) |
||
22 | ->getMock(); |
||
23 | |||
24 | $carrier->expects($this->once()) |
||
25 | ->method('getMethods') |
||
26 | ->willReturn(['internationalstandardletter' => __("International Standard Letter")]); |
||
27 | |||
28 | $this->source = new Methods($carrier); |
||
29 | } |
||
30 | } |
||
31 |