| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 8 | 
| CRAP Score | 1 | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 15 | 1 | 	public function newFingerprint() { | 
            |
| 16 | 1 | $fingerprint = new Fingerprint();  | 
            |
| 17 | |||
| 18 | 1 | $fingerprint->setLabel( 'en', 'country' );  | 
            |
| 19 | 1 | $fingerprint->setLabel( 'de', 'Staat' );  | 
            |
| 20 | 1 | $fingerprint->setLabel( 'nl', 'Land' );  | 
            |
| 21 | |||
| 22 | 1 | $fingerprint->setDescription( 'en', 'sovereign state of this item' );  | 
            |
| 23 | 1 | $fingerprint->setDescription( 'de', 'souveräner Staat, in dem sich das Objekt befindet' );  | 
            |
| 24 | |||
| 25 | 1 | return $fingerprint;  | 
            |
| 26 | }  | 
            ||
| 27 | |||
| 41 |