12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\App\Test\Unit\DefaultPath;
- class DefaultPathTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @param array $parts
- * @param string $code
- * @param string $result
- * @dataProvider dataProviderGetPart
- */
- public function testGetPart($parts, $code, $result)
- {
- $model = new \Magento\Framework\App\DefaultPath\DefaultPath($parts);
- $this->assertEquals($result, $model->getPart($code));
- }
- /**
- * @return array
- */
- public function dataProviderGetPart()
- {
- return [
- [
- ['code' => 'value'],
- 'code',
- 'value',
- ],
- [
- ['code' => 'value'],
- 'other_code',
- null,
- ],
- ];
- }
- }
|