Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function testHasApprovedRevision() { |
||
40 | |||
41 | $title = $this->getMockBuilder( '\Title' ) |
||
42 | ->disableOriginalConstructor() |
||
43 | ->getMock(); |
||
44 | |||
45 | $instance = new ApprovedRevsFacade(); |
||
46 | |||
47 | $this->assertInternalType( |
||
48 | 'boolean', |
||
49 | $instance->hasApprovedRevision( $title ) |
||
50 | ); |
||
51 | } |
||
52 | |||
68 |