Gush\Tests\Helper\MetaHelperTest::testUpdateContentPhpFileWithHeaderWithStrictType PHP Method

testUpdateContentPhpFileWithHeaderWithStrictType() public method

    public function testUpdateContentPhpFileWithHeaderWithStrictType()
    {
        $meta = $this->getMetaForPhp();
        $input = <<<'EOT'
<?php 

declare(strict_types = 1);

/*
 * This file is part of Gush package.
 *
 * (c) 2013-2014 Luis Cordova <[email protected]>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */



namespace Gush\Tests\Tester;

use Gush\Tester\HttpClient\TestHttpClient;

EOT;
        $expected = <<<'EOT'
<?php 

declare(strict_types = 1);

/*
 * This file is part of Your Package package.
 *
 * (c) 2009-2014 You <[email protected]>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

namespace Gush\Tests\Tester;

use Gush\Tester\HttpClient\TestHttpClient;

EOT;
        $this->assertEquals($expected, $this->helper->updateContent($meta, self::$header, $input));
    }