forked from dfridrich/QRPlatba
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
2 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,30 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the library "QRPlatba". | ||
* | ||
* (c) Dennis Fridrich <[email protected]> | ||
* | ||
* For the full copyright and license information, | ||
* please view LICENSE. | ||
*/ | ||
|
||
use Defr\QRPlatba\QRPlatba; | ||
|
||
/** | ||
* Class QRPlatbaTest. | ||
*/ | ||
class IBANTest extends PHPUnit_Framework_TestCase | ||
{ | ||
|
||
public function testAccountHigherThanMaxInt() | ||
{ | ||
$string = QRPlatba::accountToIban('2501301193/2010'); | ||
|
||
$this->assertSame( | ||
'CZ3620100000002501301193', | ||
$string | ||
); | ||
} | ||
|
||
} |
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