‪TYPO3CMS  9.5
NumberValidatorTest.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 ‪NumberValidatorTest extends UnitTestCase
23 {
27  protected ‪$validatorClassName = \TYPO3\CMS\Extbase\Validation\Validator\NumberValidator::class;
28 
32  protected ‪$validator;
33 
34  public function ‪setup()
35  {
36  $this->validator = $this->getMockBuilder($this->validatorClassName)
37  ->setMethods(['translateErrorMessage'])
38  ->getMock();
39  }
40 
45  {
46  $this->assertFalse($this->validator->validate(1029437)->hasErrors());
47  }
48 
53  {
54  $expectedResult = new \TYPO3\CMS\Extbase\Error\Result();
55  // we only test for the error code, after the message translation method is mocked
56  $expectedResult->addError(new \‪TYPO3\CMS\‪Extbase\Validation\Error(null, 1221563685));
57  $this->assertEquals($expectedResult, $this->validator->validate('not a number'));
58  }
59 }
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:4
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\NumberValidatorTest\numberValidatorReturnsTrueForASimpleInteger
‪numberValidatorReturnsTrueForASimpleInteger()
Definition: NumberValidatorTest.php:42
‪TYPO3
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\NumberValidatorTest\numberValidatorReturnsFalseForAString
‪numberValidatorReturnsFalseForAString()
Definition: NumberValidatorTest.php:50
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\NumberValidatorTest
Definition: NumberValidatorTest.php:23
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\NumberValidatorTest\setup
‪setup()
Definition: NumberValidatorTest.php:32
‪TYPO3\CMS\Extbase\Error\Error
Definition: Error.php:22
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\NumberValidatorTest\$validatorClassName
‪string $validatorClassName
Definition: NumberValidatorTest.php:26
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator
Definition: AbstractCompositeValidatorTest.php:2
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\NumberValidatorTest\$validator
‪TYPO3 CMS Extbase Validation Validator ValidatorInterface $validator
Definition: NumberValidatorTest.php:30