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.
Merge pull request #389 from bessl/master
Add a phpunit test file for the Miscellaneous Provider
- Loading branch information
Showing
1 changed file
with
39 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,39 @@ | ||
<?php | ||
|
||
namespace Faker\Test\Provider; | ||
|
||
use Faker\Provider\Miscellaneous; | ||
|
||
class MiscellaneousTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
|
||
public function testBoolean() | ||
{ | ||
$this->assertContains(Miscellaneous::boolean(), array(true, false)); | ||
} | ||
|
||
public function testMd5() | ||
{ | ||
$this->assertRegExp('/^[a-z0-9]{32}$/', Miscellaneous::md5()); | ||
} | ||
|
||
public function testSha1() | ||
{ | ||
$this->assertRegExp('/^[a-z0-9]{40}$/', Miscellaneous::sha1()); | ||
} | ||
|
||
public function testSha256() | ||
{ | ||
$this->assertRegExp('/^[a-z0-9]{64}$/', Miscellaneous::sha256()); | ||
} | ||
|
||
public function testCountryCode() | ||
{ | ||
$this->assertRegExp('/^[A-Z]{2}$/', Miscellaneous::countryCode()); | ||
} | ||
|
||
public function testLanguage() | ||
{ | ||
$this->assertRegExp('/^[a-z]{2}$/', Miscellaneous::languageCode()); | ||
} | ||
} |