1
0
Fork 0
composer/tests/Composer/Test/Package/MemoryPackageTest.php

30 lines
758 B
PHP
Raw Normal View History

<?php
/*
2011-04-16 12:42:35 +00:00
* This file is part of Composer.
*
2011-04-16 12:42:35 +00:00
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2011-04-17 21:45:37 +00:00
namespace Composer\Test\Package;
2011-04-17 21:45:37 +00:00
use Composer\Package\MemoryPackage;
class MemoryPackageTest extends \PHPUnit_Framework_TestCase
{
public function testMemoryPackage()
{
2011-04-17 21:45:37 +00:00
$package = new MemoryPackage('foo', '1', 'beta');
$this->assertEquals('foo', $package->getName());
$this->assertEquals('1', $package->getVersion());
$this->assertEquals('beta', $package->getReleaseType());
2011-05-22 07:08:30 +00:00
$this->assertEquals('foo-1-beta', (string) $package);
}
}