ALPHA 3.0.2a

This commit is contained in:
TheGamecraft
2018-09-10 08:51:18 -04:00
parent 7fe13ae0a7
commit 0e0ef86b71
1404 changed files with 10604 additions and 33714 deletions

View File

@@ -3,8 +3,9 @@ namespace Faker\Test\Provider\kk_KZ;
use Faker\Generator;
use Faker\Provider\kk_KZ\Company;
use PHPUnit\Framework\TestCase;
class CompanyTest extends \PHPUnit_Framework_TestCase
class CompanyTest extends TestCase
{
/**

View File

@@ -4,8 +4,9 @@ namespace Faker\Test\Provider\kk_KZ;
use Faker\Generator;
use Faker\Provider\DateTime;
use Faker\Provider\kk_KZ\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends \PHPUnit_Framework_TestCase
class PersonTest extends TestCase
{
/**
@@ -24,6 +25,6 @@ class PersonTest extends \PHPUnit_Framework_TestCase
$individualIdentificationNumber = $this->faker->individualIdentificationNumber($birthDate);
$controlDigit = Person::checkSum($individualIdentificationNumber);
$this->assertTrue($controlDigit === (int)substr($individualIdentificationNumber, 11, 1));
$this->assertSame($controlDigit, (int)substr($individualIdentificationNumber, 11, 1));
}
}