‪TYPO3CMS  9.5
StringConverterTest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
17 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
18 
22 class ‪StringConverterTest extends UnitTestCase
23 {
27  protected ‪$converter;
28 
29  protected function ‪setUp()
30  {
31  $this->converter = new \TYPO3\CMS\Extbase\Property\TypeConverter\StringConverter();
32  }
33 
37  public function ‪checkMetadata()
38  {
39  $this->assertEquals(['string', 'integer'], $this->converter->getSupportedSourceTypes(), 'Source types do not match');
40  $this->assertEquals('string', $this->converter->getSupportedTargetType(), 'Target type does not match');
41  $this->assertEquals(10, $this->converter->getPriority(), 'Priority does not match');
42  }
43 
48  {
49  $this->assertEquals('myString', $this->converter->convertFrom('myString', 'string'));
50  }
51 
55  public function ‪canConvertFromShouldReturnTrue()
56  {
57  $this->assertTrue($this->converter->canConvertFrom('myString', 'string'));
58  }
59 
64  {
65  $this->assertEquals([], $this->converter->getSourceChildPropertiesToBeConverted('myString'));
66  }
67 }
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter\StringConverterTest\checkMetadata
‪checkMetadata()
Definition: StringConverterTest.php:36
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter\StringConverterTest\getSourceChildPropertiesToBeConvertedShouldReturnEmptyArray
‪getSourceChildPropertiesToBeConvertedShouldReturnEmptyArray()
Definition: StringConverterTest.php:62
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter
Definition: ArrayConverterTest.php:2
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter\StringConverterTest
Definition: StringConverterTest.php:23
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter\StringConverterTest\setUp
‪setUp()
Definition: StringConverterTest.php:28
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter\StringConverterTest\$converter
‪TYPO3 CMS Extbase Property TypeConverterInterface $converter
Definition: StringConverterTest.php:26
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter\StringConverterTest\convertFromShouldReturnSourceString
‪convertFromShouldReturnSourceString()
Definition: StringConverterTest.php:46
‪TYPO3\CMS\Extbase\Tests\Unit\Property\TypeConverter\StringConverterTest\canConvertFromShouldReturnTrue
‪canConvertFromShouldReturnTrue()
Definition: StringConverterTest.php:54