📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 15:26:34
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
phpunit
/
php-code-coverage
/
tests
/
tests
/
Exception
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/phpunit/php-code-coverage/tests/tests/Exception
🔄 Refresh
✏️
Editing: UnintentionallyCoveredCodeExceptionTest.php
Writable
<?php declare(strict_types=1); /* * This file is part of phpunit/php-code-coverage. * * (c) 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 SebastianBergmann\CodeCoverage\tests\Exception; use PHPUnit\Framework\TestCase; use SebastianBergmann\CodeCoverage\UnintentionallyCoveredCodeException; final class UnintentionallyCoveredCodeExceptionTest extends TestCase { public function testCanConstructWithEmptyArray(): void { $unintentionallyCoveredUnits = []; $exception = new UnintentionallyCoveredCodeException($unintentionallyCoveredUnits); $this->assertSame($unintentionallyCoveredUnits, $exception->getUnintentionallyCoveredUnits()); $this->assertSame('', $exception->getMessage()); } public function testCanConstructWithNonEmptyArray(): void { $unintentionallyCoveredUnits = [ 'foo', 'bar', 'baz', ]; $exception = new UnintentionallyCoveredCodeException($unintentionallyCoveredUnits); $this->assertSame($unintentionallyCoveredUnits, $exception->getUnintentionallyCoveredUnits()); $expected = <<<'TXT' - foo - bar - baz TXT; $this->assertSame($expected, $exception->getMessage()); } }
💾 Save Changes
❌ Cancel