Vendor lock
This commit is contained in:
21
vendor/phar-io/manifest/tests/xml/ExtElementTest.php
vendored
Normal file
21
vendor/phar-io/manifest/tests/xml/ExtElementTest.php
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class ExtElementTest extends \PHPUnit\Framework\TestCase {
|
||||
/**
|
||||
* @var ExtElement
|
||||
*/
|
||||
private $ext;
|
||||
|
||||
protected function setUp() {
|
||||
$dom = new \DOMDocument();
|
||||
$dom->loadXML('<?xml version="1.0" ?><ext xmlns="https://phar.io/xml/manifest/1.0" name="dom" />');
|
||||
$this->ext = new ExtElement($dom->documentElement);
|
||||
}
|
||||
|
||||
public function testNameCanBeRetrieved() {
|
||||
$this->assertEquals('dom', $this->ext->getName());
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user