19 declare(strict_types=1);
21 require_once(__DIR__ .
'/CharacteristicValueTest.php');
30 $textListing =
$f->text($items);
31 $this->assertEquals($items, $textListing->getItems());
40 $f->text($invalidItemsMock);
43 'expected InvalidArgumentException, catched none' 46 $this->assertInstanceOf(
'InvalidArgumentException', $e);
54 $r = $this->getDefaultRenderer();
57 $textListing =
$f->text($items);
58 $actualHtml =
$r->render($textListing);
62 $this->assertHTMLEquals($expectedHtml, $actualHtml);
67 $html =
'<div class="il-listing-characteristic-value clearfix">';
68 $html .=
' <div class="il-listing-characteristic-value-row clearfix">';
69 $html .=
' <div class="il-listing-characteristic-value-label">label1</div>';
70 $html .=
' <div class="il-listing-characteristic-value-item">item1</div>';
72 $html .=
' <div class="il-listing-characteristic-value-row clearfix">';
73 $html .=
' <div class="il-listing-characteristic-value-label">label2</div>';
74 $html .=
' <div class="il-listing-characteristic-value-item">item2</div>';
76 $html .=
' <div class="il-listing-characteristic-value-row clearfix">';
77 $html .=
' <div class="il-listing-characteristic-value-label">label3</div>';
78 $html .=
' <div class="il-listing-characteristic-value-item">item3</div>';
getCharacteristicValueFactory()
getInvalidTextItemsMocks()