📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 21:39:16
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
phpunit
/
phpunit
/
tests
/
end-to-end
/
regression
/
5949
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/phpunit/phpunit/tests/end-to-end/regression/5949
🔄 Refresh
✏️
Editing: Issue5949Test.php
Writable
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (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 PHPUnit\TestFixture\Issue5949; use PHPUnit\Framework\Attributes\TestDox; use PHPUnit\Framework\TestCase; class Issue5949Test extends TestCase { #[TestDox("Test 1. No dollar sign.\n")] public function test1(): void { $this->assertTrue(true); } #[TestDox("Test 2. No dollar sign.\n")] public function test2(): void { $this->assertTrue(true); } #[TestDox("Test 3. Dollar sign (\$).\n")] public function test3(): void { $this->assertTrue(true); } #[TestDox("Test 4. No dollar sign.\n")] public function test4(): void { $this->assertTrue(true); } #[TestDox("Test 5. Dollar \$ sign.\n More text.\n")] public function test5(): void { $this->assertTrue(true); } #[TestDox("Test 6. No dollar sign.\n")] public function test6(): void { $this->assertTrue(true); } #[TestDox("Test 7. No dollar sign.\n")] public function test7(): void { $this->assertTrue(true); } #[TestDox("Test 8. No dollar sign.\n")] public function test8(): void { $this->assertTrue(true); } }
💾 Save Changes
❌ Cancel