📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:41:13
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
fakerphp
/
faker
/
test
/
Faker
/
Provider
/
en_PH
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/fakerphp/faker/test/Faker/Provider/en_PH
🔄 Refresh
✏️
Editing: AddressTest.php
Writable
<?php namespace Faker\Test\Provider\en_PH; use Faker\Provider\en_PH\Address; use Faker\Test\TestCase; /** * @group legacy */ final class AddressTest extends TestCase { public function testProvince(): void { $province = $this->faker->province(); self::assertNotEmpty($province); self::assertIsString($province); } public function testCity(): void { $city = $this->faker->city(); self::assertNotEmpty($city); self::assertIsString($city); } public function testMunicipality(): void { $municipality = $this->faker->municipality(); self::assertNotEmpty($municipality); self::assertIsString($municipality); } public function testBarangay(): void { $barangay = $this->faker->barangay(); self::assertIsString($barangay); } protected function getProviders(): iterable { yield new Address($this->faker); } }
💾 Save Changes
❌ Cancel