UtilTest.php 515 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Collection of various useful functions
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Test\Unit;
  9. class UtilTest extends \PHPUnit\Framework\TestCase
  10. {
  11. public function testGetTrimmedPhpVersion()
  12. {
  13. $util = new \Magento\Framework\Util();
  14. $version = implode('.', [PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION]);
  15. $this->assertEquals($version, $util->getTrimmedPhpVersion());
  16. }
  17. }