diff --git a/tests/Composer/Test/TestCase.php b/tests/Composer/Test/TestCase.php index 17255ab2e..05a788517 100644 --- a/tests/Composer/Test/TestCase.php +++ b/tests/Composer/Test/TestCase.php @@ -1,34 +1,35 @@ - - * Jordi Boggiano - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Composer\Test; - -use Composer\Package\Version\VersionParser; -use Composer\Package\MemoryPackage; - -abstract class TestCase extends \PHPUnit_Framework_TestCase -{ - private static $versionParser; - - public static function setUpBeforeClass() - { - if (!self::$versionParser) { - self::$versionParser = new VersionParser(); - } - } - - protected function getPackage($name, $version) - { - $normVersion = self::$versionParser->normalize($version); - return new MemoryPackage($name, $normVersion, $version); - } -} \ No newline at end of file + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Test; + +use Composer\Package\Version\VersionParser; +use Composer\Package\MemoryPackage; +use Composer\Package\LinkConstraint\VersionConstraint; + +abstract class TestCase extends \PHPUnit_Framework_TestCase +{ + private static $versionParser; + + public static function setUpBeforeClass() + { + if (!self::$versionParser) { + self::$versionParser = new VersionParser(); + } + } + + protected function getPackage($name, $version) + { + $normVersion = self::$versionParser->normalize($version); + return new MemoryPackage($name, $normVersion, $version); + } +}