mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-26 12:39:10 -04:00
Include Vendor
This commit is contained in:
35
vendor/fzaninotto/faker/test/Faker/Provider/en_GB/AddressTest.php
vendored
Normal file
35
vendor/fzaninotto/faker/test/Faker/Provider/en_GB/AddressTest.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Provider\en_GB;
|
||||
|
||||
use Faker\Generator;
|
||||
|
||||
class AddressTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* @var Generator
|
||||
*/
|
||||
private $faker;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$faker = new Generator();
|
||||
$faker->addProvider(new Address($faker));
|
||||
$this->faker = $faker;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public function testPostcode()
|
||||
{
|
||||
|
||||
$postcode = $this->faker->postcode();
|
||||
$this->assertNotEmpty($postcode);
|
||||
$this->assertInternalType('string', $postcode);
|
||||
$this->assertRegExp('@^(GIR ?0AA|[A-PR-UWYZ]([0-9]{1,2}|([A-HK-Y][0-9]([0-9ABEHMNPRV-Y])?)|[0-9][A-HJKPS-UW]) ?[0-9][ABD-HJLNP-UW-Z]{2})$@i', $postcode);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user