1 | <?php |
||
10 | final class CurrenzTest extends TestCase |
||
11 | { |
||
12 | use TestTrait; |
||
13 | |||
14 | /** |
||
15 | * @dataProvider provideCurrencies |
||
16 | */ |
||
17 | public function testCurrencies(string $code, string $name, array $countries, ?int $digits, string $id) |
||
21 | |||
22 | /** |
||
23 | * @dataProvider provideCurrencies |
||
24 | */ |
||
25 | public function testClasses(string $code, string $name, array $countries, ?int $digits, string $id) |
||
31 | |||
32 | /** |
||
33 | * @dataProvider provideCurrencies |
||
34 | */ |
||
35 | public function testFromCode(string $code, string $name, array $countries, ?int $digits, string $id) |
||
39 | |||
40 | public function provideCurrencies() |
||
46 | |||
47 | public function testSpecificCurrency() |
||
53 | |||
54 | public function testInvalidCodeException() |
||
59 | |||
60 | public function testInvalidCodeInNamedConstructorException() |
||
65 | } |
||
66 |