Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | function testSave() |
||
33 | { |
||
34 | $object = new Intraface_modules_currency_Currency_ExchangeRate; |
||
35 | $object->used_for_key = 1; |
||
36 | $object->setRate(new Ilib_Variable_Float('745,23', 'da_dk')); |
||
37 | $object->setCurrency($this->createCurrency()); |
||
38 | |||
39 | try { |
||
40 | $object->save(); |
||
41 | } catch(Exception $e) { |
||
42 | // $this->assertTrue(false, $e->getErrorMessage()); |
||
43 | } |
||
44 | } |
||
45 | |||
58 |
This check marks private properties in classes that are never used. Those properties can be removed.