D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
fzaninotto
/
faker
/
test
/
Faker
/
Provider
/
kk_KZ
/
Filename :
CompanyTest.php
back
Copy
<?php namespace Faker\Test\Provider\kk_KZ; use Faker\Generator; use Faker\Provider\kk_KZ\Company; class CompanyTest extends \PHPUnit_Framework_TestCase { /** * {@inheritdoc} */ public function setUp() { $this->faker = new Generator(); $this->faker->addProvider(new Company($this->faker)); } public function testBusinessIdentificationNumberIsValid() { $registrationDate = new \DateTime('now'); $businessIdentificationNumber = $this->faker->businessIdentificationNumber($registrationDate); $registrationDateAsString = $registrationDate->format('ym'); $this->assertRegExp( "/^(" . $registrationDateAsString . ")([4-6]{1})([0-3]{1})(\\d{6})$/", $businessIdentificationNumber ); } }