| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 15 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 27 | 	public function testBuildForEmptyTree() { | 
            ||
| 28 | |||
| 29 | $params = [  | 
            ||
| 30 | 'outlineproperties' => [ 'Foo' ],  | 
            ||
| 31 | 'template' => 'Bar',  | 
            ||
| 32 | 'userparam' => ''  | 
            ||
| 33 | ];  | 
            ||
| 34 | |||
| 35 | $instance = new TemplateBuilder( $params );  | 
            ||
| 36 | |||
| 37 | $this->assertInternalType(  | 
            ||
| 38 | 'string',  | 
            ||
| 39 | $instance->build( new OutlineTree() )  | 
            ||
| 40 | );  | 
            ||
| 41 | }  | 
            ||
| 42 | |||
| 44 |