| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 10 | class CountryCodeFieldTraitTest extends AbstractFieldTraitLargeTest |
||
| 11 | { |
||
| 12 | public const WORK_DIR = AbstractTest::VAR_PATH . |
||
| 13 | '/' . |
||
| 14 | self::TEST_TYPE_LARGE . |
||
| 15 | '/CountryCodeFieldTraitTest/'; |
||
| 16 | protected const TEST_FIELD_FQN = CountryCodeFieldTrait::class; |
||
| 17 | protected const TEST_FIELD_PROP = CountryCodeFieldInterface::PROP_COUNTRY_CODE; |
||
| 18 | protected const TEST_FIELD_DEFAULT = CountryCodeFieldInterface::DEFAULT_COUNTRY_CODE; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @test |
||
| 22 | * @large |
||
| 23 | * @covers \EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Traits\String\CountryCodeFieldTrait |
||
| 24 | */ |
||
| 25 | public function createEntityWithField(): void |
||
| 26 | { |
||
| 27 | parent::createEntityWithField(); // TODO: Change the autogenerated stub |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @test |
||
| 32 | * @large |
||
| 33 | * @covers \EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Traits\String\CountryCodeFieldTrait |
||
| 34 | */ |
||
| 35 | public function createDatabaseSchema() |
||
| 38 | } |
||
| 39 | } |
||
| 40 |