| Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/vendor/ably/ably-php/tests/ |
| Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/vendor/ably/ably-php/tests/UtilsTest.php |
<?php
namespace tests;
use Ably\Utils\Miscellaneous;
class UtilsTest extends \PHPUnit\Framework\TestCase {
public function testPhpVersion() {
$numericVersion = Miscellaneous::getNumeric('1.2.9-ubuntu-tef');
$this->assertEquals('1.2.9', $numericVersion);
$numericVersion = Miscellaneous::getNumeric('4.6-macos-t');
$this->assertEquals('4.6', $numericVersion);
$numericVersion = Miscellaneous::getNumeric('7.2.34-28+ubuntu20.04.1+deb.sury.org+1');
$this->assertEquals('7.2.34', $numericVersion);
}
}