Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function testExecute() { |
||
32 | |||
33 | $userFieldsCreateTemplate = $this->getMockBuilder( '\SES\UserFieldsCreateTemplate' ) |
||
34 | ->disableOriginalConstructor() |
||
35 | ->getMock(); |
||
36 | |||
37 | $instance = new SignupFieldsParserFunction( $userFieldsCreateTemplate ); |
||
38 | |||
39 | $this->assertInternalType( |
||
40 | 'array', |
||
41 | $instance->parse( array() ) |
||
42 | ); |
||
43 | } |
||
44 | |||
46 |