| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function testCanConstruct() { |
||
| 20 | |||
| 21 | $userFieldsCreateTemplate = $this->getMockBuilder( '\SES\UserFieldsCreateTemplate' ) |
||
| 22 | ->disableOriginalConstructor() |
||
| 23 | ->getMock(); |
||
| 24 | |||
| 25 | $this->assertInstanceOf( |
||
| 26 | '\SES\SignupFieldsParserFunction', |
||
| 27 | new SignupFieldsParserFunction( $userFieldsCreateTemplate ) |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 46 |