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 #410 from bessl/master
Added ipv4 and barcode tests.
- Loading branch information
Showing
2 changed files
with
31 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,26 @@ | ||
<?php | ||
|
||
namespace Faker\Test\Provider; | ||
|
||
use Faker\Generator; | ||
use Faker\Provider\Barcode; | ||
|
||
class BarcodeTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
public function setUp() | ||
{ | ||
$faker = new Generator(); | ||
$faker->addProvider(new Barcode($faker)); | ||
$this->faker = $faker; | ||
} | ||
|
||
public function testEan8() | ||
{ | ||
$this->assertRegExp('/[\d]{8}/', $this->faker->ean8()); | ||
} | ||
|
||
public function testEan13() | ||
{ | ||
$this->assertRegExp('/[\d]{13}/', $this->faker->ean13()); | ||
} | ||
} |
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