123456789101112131415161718192021222324252627282930 |
- <?php
- include_once '../../Config.php';
- class ShaHmac256SignerTest extends PHPUnit_Framework_TestCase
- {
- public function testShaHmac256Signer()
- {
- $signer = new ShaHmac256Signer();
- $this->assertEquals("TpF1lE/avV9EHGWGg9Vo/QTd2bLRwFCk9jjo56uRbCo=",
- $signer->signString("this is a ShaHmac256 test.", "accessSecret"));
- }
- }
|