| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | protected function setUp() |
||
| 24 | { |
||
| 25 | parent::setUp(); |
||
| 26 | |||
| 27 | $this->method = $this->createMock(MethodInterface::class); |
||
| 28 | $this->method->method('getRegisterHandler')->willReturn( |
||
| 29 | $this->createMock(RegisterHandlerInterface::class) |
||
| 30 | ); |
||
| 31 | |||
| 32 | $this->details = new AvailableMethodDetails($this->method); |
||
| 33 | } |
||
| 42 |