/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
mirko-pagliai
/
php-thumber
/
src
/
TestSuite
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/php-thumber/src/TestSuite
mkdir
upload
Name
Size
Mode
Actions
TestCase.php
880
0644
edit
dl
rm
TestTrait.php
4582
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/php-thumber/src/TestSuite/TestCase.php
(880B)
<?php declare(strict_types=1); /** * This file is part of php-thumber. * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Mirko Pagliai * @link https://github.com/mirko-pagliai/php-thumber * @license https://opensource.org/licenses/mit-license.php MIT License */ namespace Thumber\TestSuite; use Tools\Filesystem; use Tools\TestSuite\TestCase as BaseTestCase; /** * TestCase class */ abstract class TestCase extends BaseTestCase { use TestTrait; /** * Called after every test method * @return void * @throws \Throwable */ protected function tearDown(): void { Filesystem::instance()->unlinkRecursive(THUMBER_TARGET); parent::tearDown(); } }
Save
cmd:
run