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 : 3.15.147.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
swiftmailer /
swiftmailer /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
_samples
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
acceptance
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
bug
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
fixtures
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
smoke
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
unit
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
IdenticalBinaryConstraint.php
1.22
KB
-rw-r--r--
2020-11-17 16:24
StreamCollector.php
145
B
-rw-r--r--
2020-11-17 16:24
SwiftMailerSmokeTestCase.php
1.47
KB
-rw-r--r--
2020-11-17 16:24
SwiftMailerTestCase.php
891
B
-rw-r--r--
2020-11-17 16:24
acceptance.conf.php.default
1.01
KB
-rw-r--r--
2020-11-17 16:24
bootstrap.php
662
B
-rw-r--r--
2020-11-17 16:24
smoke.conf.php.default
1.53
KB
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration; /** * A base test case with some custom expectations. * * @author Rouven Weßling */ class SwiftMailerTestCase extends \PHPUnit\Framework\TestCase { use MockeryPHPUnitIntegration; public static function regExp($pattern) { if (!is_string($pattern)) { throw PHPUnit_Util_InvalidArgumentHelper::factory(1, 'string'); } return new \PHPUnit\Framework\Constraint\RegularExpression($pattern); } public function assertIdenticalBinary($expected, $actual, $message = '') { $constraint = new IdenticalBinaryConstraint($expected); self::assertThat($actual, $constraint, $message); } protected function tearDown() { \Mockery::close(); } protected function getMockery($class) { return \Mockery::mock($class); } }