提交
This commit is contained in:
18
vendor/alibabacloud/oss-v2/tests/UnitTests/Signer/NopSignerTest.php
vendored
Normal file
18
vendor/alibabacloud/oss-v2/tests/UnitTests/Signer/NopSignerTest.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace UnitTests\Signer;
|
||||
|
||||
use AlibabaCloud\Oss\V2\Signer\NopSigner;
|
||||
use AlibabaCloud\Oss\V2\Signer\SigningContext;
|
||||
|
||||
class NopSignerTest extends \PHPUnit\Framework\TestCase
|
||||
{
|
||||
|
||||
public function testNopSigner()
|
||||
{
|
||||
$r = new NopSigner();
|
||||
$g = new SigningContext();
|
||||
$this->assertNull($r->sign($g));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user