respect-validation/tests/unit/Rules/CurrencyCodeTest.php

44 lines
882 B
PHP
Raw Normal View History

2015-10-18 16:02:48 +02:00
<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules;
/**
* @group rule
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\CurrencyCode
2015-10-18 16:02:48 +02:00
*/
class CurrencyCodeTest extends RuleTestCase
{
public function providerForValidInput()
{
$rule = new CurrencyCode();
return [
[$rule, 'EUR'],
[$rule, 'GBP'],
[$rule, 'XAU'],
[$rule, 'xba'],
[$rule, 'xxx'],
2015-10-18 16:02:48 +02:00
];
}
public function providerForInvalidInput()
{
$rule = new CurrencyCode();
return [
[$rule, 'BTC'],
[$rule, 'GGP'],
[$rule, 'USA'],
2015-10-18 16:02:48 +02:00
];
}
}