1 | <?php |
||
6 | class AliasTest extends \PHPUnit_Framework_TestCase |
||
7 | { |
||
8 | |||
9 | /** @test */ |
||
10 | public function AliasCanHaveUsage() |
||
15 | |||
16 | /** @test */ |
||
17 | public function AliasCanHaveOperationByMerchant() |
||
22 | |||
23 | /** @test */ |
||
24 | public function AliasCanHaveOperationByPsp() |
||
29 | |||
30 | /** |
||
31 | * @test |
||
32 | * @expectedException \InvalidArgumentException |
||
33 | */ |
||
34 | public function AliasIsMax50Characters() |
||
38 | |||
39 | /** |
||
40 | * @test |
||
41 | * @expectedException \InvalidArgumentException |
||
42 | */ |
||
43 | public function AliasIsAlphaNumeric() |
||
47 | |||
48 | /** @test */ |
||
49 | public function CanBeRepresentedAsString() |
||
53 | } |
||
54 |