LiteralTest.php 565 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Composer\Test\DependencyResolver;
  11. use Composer\DependencyResolver\Literal;
  12. use Composer\DependencyResolver\MemoryPackage;
  13. class SolvableTest extends \PHPUnit_Framework_TestCase
  14. {
  15. public function testSolvable()
  16. {
  17. $literal = new Literal(new MemoryPackage('foo', '1'), true);
  18. }
  19. }