PathComponentTest.php in Drupal 7 to 8/9 Module Upgrader 8
File
tests/src/Unit/Utility/Path/Drupal7/PathComponentTest.phpView source
<?php
namespace Drupal\Tests\drupalmoduleupgrader\Unit\Utility\Path\Drupal7;
use Drupal\drupalmoduleupgrader\Utility\Path\Drupal7\PathComponent;
use Drupal\Tests\UnitTestCase;
/**
* @group DMU.Utility.Path
*/
class PathComponentTest extends UnitTestCase {
public function testPathComponent() {
$placeholder = new PathComponent('%');
$this
->assertTrue($placeholder
->isPlaceholder());
$this
->assertFalse($placeholder
->isWildcard());
$this
->assertEquals('%', $placeholder
->__toString());
$wildcard = new PathComponent('%node');
$this
->assertTrue($wildcard
->isWildcard());
$this
->assertFalse($wildcard
->isPlaceholder());
$this
->assertEquals('%node', $wildcard
->__toString('%node'));
}
}
Classes
Name | Description |
---|---|
PathComponentTest | @group DMU.Utility.Path |