1 | <?php |
||
13 | class SignerTest extends PHPUnit_Framework_TestCase |
||
14 | { |
||
15 | /** @var string */ |
||
16 | const DEFAULT_SELF_KEY = 'Skyzyx'; |
||
17 | |||
18 | /** @var string */ |
||
19 | const DEFAULT_CLIENT_ID = 'k3qDQy0Tr56v1ceo'; |
||
20 | |||
21 | /** @var string */ |
||
22 | const DEFAULT_CLIENT_SECRET = 'O5j@pG@Jt%AzyiJTEfo!£LSz8yqSj)JX)S6FvW%58KjlS9bc%Fi7&&C4KSCT8hxd'; |
||
23 | |||
24 | /** @var string */ |
||
25 | const DEFAULT_SIGNATURE = 'dfbffab5b6f7156402da8147886bba3eba67bd5baf2e780ba9d39e8437db7c4735e9a0b834aa21ac76f98da8c52a2a0cd1b0192d0f0df5c98e3848b1b2e1a037'; |
||
|
|||
26 | |||
27 | /** @var \Skyzyx\Signer\Signer */ |
||
28 | public $signer; |
||
29 | |||
30 | public function setUp() |
||
34 | |||
35 | public function testAttributes() |
||
41 | |||
42 | public function testGetSelfKey() |
||
46 | |||
47 | public function testGetClientKey() |
||
51 | |||
52 | public function testGetClientSecret() |
||
56 | |||
57 | public function testSign() |
||
70 | } |
||
71 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.