![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-eav/Test/Unit/Model/Validator/Attribute/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); /** * Test for \Magento\Eav\Model\Validator\Attribute\Code */ namespace Magento\Eav\Test\Unit\Model\Validator\Attribute; use Magento\Eav\Model\Validator\Attribute\Code; use Magento\Framework\Validator\ValidateException; use PHPUnit\Framework\TestCase; class CodeTest extends TestCase { /** * Testing \Magento\Eav\Model\Validator\Attribute\Code::isValid * * @dataProvider isValidDataProvider * @param string $attributeCode * @param bool $expected * @throws ValidateException */ public function testIsValid(string $attributeCode, bool $expected): void { $validator = new Code(); $this->assertEquals($expected, $validator->isValid($attributeCode)); } /** * Data provider for testIsValid * * @return array */ public function isValidDataProvider(): array { return [ [ 'Attribute_code', true ], [ 'attribute_1', true ],[ 'Attribute_1', true ], [ '_attribute_code', false ], [ 'attribute.code', false ], [ '1attribute_code', false ], [ 'more_than_60_chars_more_than_60_chars_more_than_60_chars_more', false ], [ 'container_attribute', false, ], ]; } }