Files
gaofeng 81ade70944 提交
2026-06-17 09:23:18 +08:00

18 lines
341 B
PHP

<?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));
}
}