phpmyadmin/tests/unit/VersionTest.php
Maurício Meneghini Fauth 606f66b5df
Rename tests/classes to tests/unit
This directory is for unit tests only, so let's rename it to unit to be
more clear.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-02-23 13:29:07 -03:00

39 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Version;
use PHPUnit\Framework\Attributes\CoversClass;
use function defined;
#[CoversClass(Version::class)]
class VersionTest extends AbstractTestCase
{
/**
* Validate the current version
*/
public function testValidateVersion(): void
{
self::assertIsString(Version::VERSION);
self::assertNotEmpty(Version::VERSION); // @phpstan-ignore-line
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);
}
}