phpmyadmin/test/classes/VersionTest.php
Maurício Meneghini Fauth 7fc96d6621
Call PHPUnit static methods using static calls
Backports #18907 to QA_5_2.

This makes merging QA_5_2 into master easier.
Changes done using Rector.

- #18907

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2024-10-12 14:28:22 -03:00

40 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Version;
use function defined;
/**
* @covers \PhpMyAdmin\Version
*/
class VersionTest extends AbstractTestCase
{
/**
* Validate the current version
*/
public function testValidateVersion(): void
{
self::assertIsString(Version::VERSION);
self::assertNotEmpty(Version::VERSION);
self::assertStringContainsString(Version::SERIES, Version::VERSION, 'x.y must be found in x.y.z');
self::assertIsInt(Version::MAJOR);
self::assertIsInt(Version::MINOR);
self::assertIsInt(Version::PATCH);
self::assertTrue(Version::MAJOR >= 5);// @phpstan-ignore-line Just checking
self::assertTrue(Version::MINOR >= 0);// @phpstan-ignore-line Just checking
self::assertTrue(Version::PATCH >= 0);// @phpstan-ignore-line Just checking
self::assertTrue(Version::ID >= 50000);// @phpstan-ignore-line Just checking
if (defined('VERSION_SUFFIX')) {
self::assertIsString(VERSION_SUFFIX);
}
self::assertIsInt(Version::ID);
self::assertIsString(Version::PRE_RELEASE_NAME);
self::assertIsBool(Version::IS_DEV);
}
}