Paragonik/paragonik-backend/vendor/phar-io/manifest/tests/xml/ExtElementTest.php

22 lines
510 B
PHP
Raw Normal View History

2019-12-07 16:47:41 +01:00
<?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());
}
}