Sha256: c4fb0481d250a4754b686604b637aad4f3585cfe1e2eef3203e152eacdf91d08
Contents?: true
Size: 1.47 KB
Versions: 112
Compression:
Stored size: 1.47 KB
Contents
<?php require "run-length-encoding.php"; /** * Class RunLengthEncodingTest */ class RunLengthEncodingTest extends PHPUnit\Framework\TestCase { public function testEncodeEmptyString() { $this->assertEquals('', encode('')); } public function testEncodeSingleCharactersOnly() { $this->assertEquals('XYZ', encode('XYZ')); } public function testDecodeEmptyString() { $this->assertEquals('', decode('')); } public function testDecodeSingleCharactersOnly() { $this->assertEquals('XYZ', decode('XYZ')); } public function testEncodeSimple() { $this->assertEquals('2A3B4C', encode('AABBBCCCC')); } public function testDecodeSimple() { $this->assertEquals('AABBBCCCC', decode('2A3B4C')); } public function testEncodeWithSingleValues() { $this->assertEquals( '12WB12W3B24WB', encode('WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB') ); } public function testDecodeWithSingleValues() { $this->assertEquals( 'WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB', decode('12WB12W3B24WB') ); } public function testDecodeMultipleWhitespaceMixedInString() { $this->assertEquals(' hsqq qww ', decode('2 hs2q q2w2 ')); } public function testEncodeDecodeCombination() { $this->assertEquals('zzz ZZ zZ', decode(encode('zzz ZZ zZ'))); } }
Version data entries
112 entries across 112 versions & 1 rubygems