Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
53 | public function testGetApprovedFileInfo() { |
||
54 | |||
55 | $title = $this->getMockBuilder( '\Title' ) |
||
56 | ->disableOriginalConstructor() |
||
57 | ->getMock(); |
||
58 | |||
59 | $instance = new ApprovedRevsFacade(); |
||
60 | |||
61 | $this->assertInternalType( |
||
62 | 'array', |
||
63 | $instance->getApprovedFileInfo( $title ) |
||
64 | ); |
||
65 | } |
||
66 | |||
68 |