| 1 | <?php |
||
| 15 | class IbanTest extends \PHPUnit\Framework\TestCase { |
||
| 16 | |||
| 17 | const TEST_IBAN_WITH_WHITESPACE = 'DE12 5001 0517 0648 4898 90 '; |
||
| 18 | const TEST_IBAN = 'DE12500105170648489890'; |
||
| 19 | const TEST_LOWERCASE_IBAN = 'de12500105170648489890'; |
||
| 20 | |||
| 21 | public function testGivenIbanWithWhitespace_WhitespaceIsRemoved(): void { |
||
| 25 | |||
| 26 | public function testCountryCodeIsReturnedCorrectly(): void { |
||
| 30 | |||
| 31 | public function testCountryCodeIsReturnedCorrectlyForLowercase(): void { |
||
| 35 | |||
| 36 | public function testGivenSameIbanWithDifferentCapitalization_objectsAreEqual(): void { |
||
| 42 | |||
| 43 | } |
||
| 44 |