Included vendor/ to the project

This commit is contained in:
2017-09-13 09:35:32 +07:00
parent e72205ff09
commit 17f1643875
2483 changed files with 179073 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace PharIo\Manifest;
class ComponentElementTest extends \PHPUnit_Framework_TestCase {
/**
* @var ComponentElement
*/
private $component;
protected function setUp() {
$dom = new \DOMDocument();
$dom->loadXML('<?xml version="1.0" ?><component xmlns="https://phar.io/xml/manifest/1.0" name="phar-io/phive" version="0.6.0" />');
$this->component = new ComponentElement($dom->documentElement);
}
public function testNameCanBeRetrieved() {
$this->assertEquals('phar-io/phive', $this->component->getName());
}
public function testEmailCanBeRetrieved() {
$this->assertEquals('0.6.0', $this->component->getVersion());
}
}