1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Faker\Test\Provider\en_PH;
- use Faker\Generator;
- use Faker\Provider\en_PH\Address;
- class AddressTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @var Faker\Generator
- */
- private $faker;
- public function setUp()
- {
- $faker = new Generator();
- $faker->addProvider(new Address($faker));
- $this->faker = $faker;
- }
- public function testProvince()
- {
- $province = $this->faker->province();
- $this->assertNotEmpty($province);
- $this->assertInternalType('string', $province);
- }
- public function testCity()
- {
- $city = $this->faker->city();
- $this->assertNotEmpty($city);
- $this->assertInternalType('string', $city);
- }
- public function testMunicipality()
- {
- $municipality = $this->faker->municipality();
- $this->assertNotEmpty($municipality);
- $this->assertInternalType('string', $municipality);
- }
- public function testBarangay()
- {
- $barangay = $this->faker->barangay();
- $this->assertInternalType('string', $barangay);
- }
- }
|