PopTest\Compress\LzfTest::testLzf PHP Метод

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

public testLzf ( )
    public function testLzf()
    {
        if (function_exists('lzf_compress')) {
            $compressed = Lzf::compress($this->string);
            $decompressed = Lzf::decompress($compressed);
            $this->assertEquals($this->string, $decompressed);
        }
    }
LzfTest