| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | public function test_setValue_with_Money() |
||
| 15 | { |
||
| 16 | $form = new \Nip\Form\Form(); |
||
| 17 | $form->setRendererType('Bootstrap4'); |
||
| 18 | |||
| 19 | $element = new \Nip_Form_Element_Money($form); |
||
| 20 | $value = Money::RON(223344); |
||
| 21 | $element->setValue($value); |
||
| 22 | $html = $form->getRenderer()->renderElement($element); |
||
| 23 | |||
| 24 | self::assertSame( |
||
| 25 | '<div class="input-group"><input type="number" value="2233.44" class="form-control " title="" /><span class="input-group-text">RON</span></div>', |
||
| 26 | $html |
||
| 27 | ); |
||
| 30 |