Pili\Tests\Base64Test::testUrlSafe PHP Метод

testUrlSafe() публичный Метод

public testUrlSafe ( )
    public function testUrlSafe()
    {
        $a = '你好';
        $b = Utils::base64UrlEncode($a);
        $this->assertEquals($a, Utils::base64UrlDecode($b));
    }
Base64Test