TYPO3 CMS  TYPO3_6-2
TypoScriptFactoryTest.php
Go to the documentation of this file.
1 <?php
3 
21 
25  protected $subject;
26 
27  public function setUp() {
28  $this->subject = new \TYPO3\CMS\Form\Domain\Factory\TypoScriptFactory();
29  }
30 
34  public function stdWrapIsAppliedToElementValue() {
35  $input = array(
36  'value' => 'something',
37  'value.' => array(
38  'wrap' => 'ABC|DEF'
39  )
40  );
41  $inputStdWrapped = 'ABCsomethingDEF';
42 
43  $element = $this->subject->createElement('textline', $input);
44 
45  $this->assertSame(
46  $inputStdWrapped,
47  $element->getValue()
48  );
49  }
50 }