📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 23:31:06
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
fakerphp
/
faker
/
test
/
Faker
/
Provider
/
en_NG
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/fakerphp/faker/test/Faker/Provider/en_NG
🔄 Refresh
✏️
Editing: AddressTest.php
Writable
<?php namespace Faker\Provider\en_NG; use Faker\Test\TestCase; /** * @group legacy */ final class AddressTest extends TestCase { public function testPostcodeIsNotEmptyAndIsValid(): void { $postcode = $this->faker->postcode(); self::assertNotEmpty($postcode); self::assertIsString($postcode); } /** * Test the name of the Nigerian State/County */ public function testCountyIsAValidString(): void { $county = $this->faker->county; self::assertNotEmpty($county); self::assertIsString($county); } /** * Test the name of the Nigerian Region in a State. */ public function testRegionIsAValidString(): void { $region = $this->faker->region; self::assertNotEmpty($region); self::assertIsString($region); } protected function getProviders(): iterable { yield new Address($this->faker); } }
💾 Save Changes
❌ Cancel