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 namespace PharIo\Version; use PHPUnit\Framework\TestCase; /** * @covers \PharIo\Version\PreReleaseSuffix */ class PreReleaseSuffixTest extends TestCase { /** * @dataProvider greaterThanProvider * * @param string $leftSuffixValue * @param string $rightSuffixValue * @param bool $expectedResult */ public function testGreaterThanReturnsExpectedResult( $leftSuffixValue, $rightSuffixValue, $expectedResult ) { $leftSuffix = new PreReleaseSuffix($leftSuffixValue); $rightSuffix = new PreReleaseSuffix($rightSuffixValue); $this->assertSame($expectedResult, $leftSuffix->isGreaterThan($rightSuffix)); } public function greaterThanProvider() { return [ ['alpha1', 'alpha2', false], ['alpha2', 'alpha1', true], ['beta1', 'alpha3', true], ['b1', 'alpha3', true], ['b1', 'a3', true], ['dev1', 'alpha2', false], ['dev1', 'alpha2', false], ['alpha2', 'dev5', true], ['rc1', 'beta2', true], ['patch5', 'rc7', true], ['alpha1', 'alpha.2', false], ['alpha.3', 'alpha2', true], ['alpha.3', 'alpha.2', true], ]; } }