12345678910111213141516171819202122232425262728 |
- <?php
- /*
- * This file is part of the PHP CS utility.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace Symfony\CS\Tests;
- use Symfony\CS\Console\Application;
- /**
- * @author SpacePossum
- *
- * @internal
- */
- final class ApplicationTest extends \PHPUnit_Framework_TestCase
- {
- public function testApplication()
- {
- $app = new Application();
- $this->assertStringMatchesFormat('<info>PHP CS Fixer</info> version <comment>%d.%d%s</comment> by <comment>Fabien Potencier</comment>', $app->getLongVersion());
- }
- }
|