‪TYPO3CMS  9.5
AbstractDataTypeBaseTestCase.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
3 
5 
6 /*
7  * This file is part of the TYPO3 CMS project.
8  *
9  * It is free software; you can redistribute it and/or modify it under
10  * the terms of the GNU General Public License, either version 2
11  * of the License, or any later version.
12  *
13  * For the full copyright and license information, please read the
14  * LICENSE.txt file that was distributed with this source code.
15  *
16  * The TYPO3 project - inspiring people to share!
17  */
18 
22 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
23 
27 abstract class ‪AbstractDataTypeBaseTestCase extends UnitTestCase
28 {
32  const ‪CREATE_TABLE_STATEMENT = 'CREATE TABLE `aTable`(`aField` %s);';
33 
40  protected function ‪createTableStatement(string $columnDefinition): string
41  {
42  return sprintf(static::CREATE_TABLE_STATEMENT, $columnDefinition);
43  }
44 
51  protected function ‪createSubject(string $statement): ‪CreateColumnDefinitionItem
52  {
53  ‪$parser = new ‪Parser($this->‪createTableStatement($statement));
55  $createTableStatement = ‪$parser->getAST();
56 
57  return $createTableStatement->createDefinition->items[0];
58  }
59 }
‪TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateTableStatement
Definition: CreateTableStatement.php:23
‪TYPO3\CMS\Core\Tests\Unit\Database\Schema\Parser\AbstractDataTypeBaseTestCase\CREATE_TABLE_STATEMENT
‪const CREATE_TABLE_STATEMENT
Definition: AbstractDataTypeBaseTestCase.php:32
‪TYPO3\CMS\Core\Database\Schema\Parser\AST\CreateColumnDefinitionItem
Definition: CreateColumnDefinitionItem.php:26
‪TYPO3\CMS\Core\Tests\Unit\Database\Schema\Parser\AbstractDataTypeBaseTestCase\createTableStatement
‪string createTableStatement(string $columnDefinition)
Definition: AbstractDataTypeBaseTestCase.php:40
‪$parser
‪$parser
Definition: annotationChecker.php:100
‪TYPO3\CMS\Core\Database\Schema\Parser\Parser
Definition: Parser.php:28
‪TYPO3\CMS\Core\Tests\Unit\Database\Schema\Parser\AbstractDataTypeBaseTestCase\createSubject
‪TYPO3 CMS Core Database Schema Parser AST CreateColumnDefinitionItem createSubject(string $statement)
Definition: AbstractDataTypeBaseTestCase.php:51
‪TYPO3\CMS\Core\Tests\Unit\Database\Schema\Parser\AbstractDataTypeBaseTestCase
Definition: AbstractDataTypeBaseTestCase.php:28
‪TYPO3\CMS\Core\Tests\Unit\Database\Schema\Parser
Definition: AbstractDataTypeBaseTestCase.php:4