diff --git a/test/Faker/Provider/en_IN/AddressTest.php b/test/Faker/Provider/en_IN/AddressTest.php new file mode 100644 index 0000000000..a5e965b284 --- /dev/null +++ b/test/Faker/Provider/en_IN/AddressTest.php @@ -0,0 +1,56 @@ +addProvider(new Address($faker)); + $this->faker = $faker; + } + + public function testCity() + { + $city = $this->faker->city(); + $this->assertNotEmpty($city); + $this->assertInternalType('string', $city); + $this->assertRegExp('/[A-Z][a-z]+/', $city); + } + + public function testCountry() + { + $country = $this->faker->country(); + $this->assertNotEmpty($country); + $this->assertInternalType('string', $country); + $this->assertRegExp('/[A-Z][a-z]+/', $country); + } + + public function testLocalityName() + { + $localityName = $this->faker->localityName(); + $this->assertNotEmpty($localityName); + $this->assertInternalType('string', $localityName); + $this->assertRegExp('/[A-Z][a-z]+/', $localityName); + } + + public function testAreaSuffix() + { + $areaSuffix = $this->faker->areaSuffix(); + $this->assertNotEmpty($areaSuffix); + $this->assertInternalType('string', $areaSuffix); + $this->assertRegExp('/[A-Z][a-z]+/', $areaSuffix); + } +} + +?>