123456789101112131415161718192021222324252627282930 |
- <?php
- include_once '../../Config.php';
- class ShaHmac1SignerTest extends PHPUnit_Framework_TestCase
- {
- public function testShaHmac1Signer()
- {
- $signer = new ShaHmac1Signer();
- $this->assertEquals("33nmIV5/p6kG/64eLXNljJ5vw84=",
- $signer->signString("this is a ShaHmac1 test.", "accessSecret"));
- }
- }
|