审查视图

simplewind/vendor/qiniu/php-sdk/tests/Qiniu/Tests/Crc32Test.php 412 字节
董瑞恩 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php
namespace Qiniu\Tests;

use Qiniu;

class Crc32Test extends \PHPUnit_Framework_TestCase
{
    public function testData()
    {
        $a = '你好';
        $b = \Qiniu\crc32_data($a);
        $this->assertEquals('1352841281', $b);
    }

    public function testFile()
    {
        $b = \Qiniu\crc32_file(__file__);
        $c = \Qiniu\crc32_file(__file__);
        $this->assertEquals($c, $b);
    }
}