| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class AvailableMethodDetailsTest extends SapphireTest |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var MethodInterface|PHPUnit_Framework_MockObject_MockObject |
||
| 15 | */ |
||
| 16 | protected $method; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var AvailableMethodDetails |
||
| 20 | */ |
||
| 21 | protected $details; |
||
| 22 | |||
| 23 | protected function setUp() |
||
| 24 | { |
||
| 25 | parent::setUp(); |
||
| 26 | |||
| 27 | $this->method = $this->createMock(MethodInterface::class); |
||
| 28 | $this->details = new AvailableMethodDetails($this->method); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function testJsonSerialize() |
||
| 36 | } |
||
| 37 | } |
||
| 38 |