This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ar_JO unit test folder + InternetTest.php
- Loading branch information
1 parent
f6b2ebd
commit 0b454cb
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
namespace Faker\Test\Provider\ar_JO; | ||
|
||
use Faker\Generator; | ||
use Faker\Provider\fi_FI\Person; | ||
use Faker\Provider\fi_FI\Internet; | ||
use Faker\Provider\fi_FI\Company; | ||
|
||
class InternetTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
|
||
/** | ||
* @var Generator | ||
*/ | ||
private $faker; | ||
|
||
public function setUp() | ||
{ | ||
$faker = new Generator(); | ||
$faker->addProvider(new Person($faker)); | ||
$faker->addProvider(new Internet($faker)); | ||
$faker->addProvider(new Company($faker)); | ||
$this->faker = $faker; | ||
} | ||
|
||
public function testEmailIsValid() | ||
{ | ||
$email = $this->faker->email(); | ||
$this->assertNotFalse(filter_var($email, FILTER_VALIDATE_EMAIL)); | ||
} | ||
} |