mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-25 20:29:10 -04:00
Include Vendor
This commit is contained in:
29
vendor/fzaninotto/faker/test/Faker/Provider/bn_BD/PersonTest.php
vendored
Normal file
29
vendor/fzaninotto/faker/test/Faker/Provider/bn_BD/PersonTest.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Test\Provider\bn_BD;
|
||||
|
||||
use Faker\Generator;
|
||||
use Faker\Provider\bn_BD\Person;
|
||||
|
||||
class PersonTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function setUp()
|
||||
{
|
||||
$faker = new Generator();
|
||||
$faker->addProvider(new Person($faker));
|
||||
$this->faker = $faker;
|
||||
}
|
||||
|
||||
public function testIfFirstNameMaleCanReturnData()
|
||||
{
|
||||
$firstNameMale = $this->faker->firstNameMale();
|
||||
$this->assertNotEmpty($firstNameMale);
|
||||
}
|
||||
|
||||
public function testIfFirstNameFemaleCanReturnData()
|
||||
{
|
||||
$firstNameFemale = $this->faker->firstNameFemale();
|
||||
$this->assertNotEmpty($firstNameFemale);
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user