1 | <?php |
||
11 | final class TokenTest extends \PHPUnit\Framework\TestCase |
||
12 | { |
||
13 | /** |
||
14 | * Verify basic behavior of getPublicKey(). |
||
15 | * |
||
16 | * @test |
||
17 | * @covers ::getPublicKey |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function getPublicKey() |
||
26 | |||
27 | /** |
||
28 | * Verify basic behavior of getSignature(). |
||
29 | * |
||
30 | * @test |
||
31 | * @covers ::getSignature |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function getSignature() |
||
40 | |||
41 | /** |
||
42 | * Verify basic behavior of getNonce(). |
||
43 | * |
||
44 | * @test |
||
45 | * @covers ::getNonce |
||
46 | * |
||
47 | * @return void |
||
48 | */ |
||
49 | public function getNonce() |
||
54 | |||
55 | /** |
||
56 | * Verify basic behavior of getTimestamp(). |
||
57 | * |
||
58 | * @test |
||
59 | * @covers ::getTimestamp |
||
60 | * |
||
61 | * @return void |
||
62 | */ |
||
63 | public function getTimestamp() |
||
69 | } |
||
70 |