📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 19:41:48
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
hamcrest
/
hamcrest-php
/
tests
/
Hamcrest
/
Core
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core
🔄 Refresh
✏️
Editing: IsAnythingTest.php
Writable
<?php namespace Hamcrest\Core; class IsAnythingTest extends \Hamcrest\AbstractMatcherTest { protected function createMatcher() { return \Hamcrest\Core\IsAnything::anything(); } public function testAlwaysEvaluatesToTrue() { assertThat(null, anything()); assertThat(new \stdClass(), anything()); assertThat('hi', anything()); } public function testHasUsefulDefaultDescription() { $this->assertDescription('ANYTHING', anything()); } public function testCanOverrideDescription() { $description = 'description'; $this->assertDescription($description, anything($description)); } }
💾 Save Changes
❌ Cancel