1
0
Fork 0
composer/tests/Composer/Test/Repository/ArrayRepositoryTest.php

28 lines
641 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\Repository;
2011-04-17 21:45:37 +00:00
use Composer\Repository\ArrayRepository;
use Composer\Package\MemoryPackage;
class ArrayRepositoryTest extends \PHPUnit_Framework_TestCase
{
public function testAddLiteral()
{
$repo = new ArrayRepository;
$repo->addPackage(new MemoryPackage('foo', '1'));
$this->assertEquals(1, count($repo));
}
}