Sha256: 0484f0e9b5c6d17f02765dc2959f0e30c9b63c0e83b41798cb89b5e6224d6a10

Contents?: true

Size: 1.36 KB

Versions: 300

Compression:

Stored size: 1.36 KB

Contents

<?php

require "atbash-cipher.php";

class AtbashTest extends PHPUnit\Framework\TestCase
{
    public function testEncodeNo()
    {
        $this->assertEquals('ml', encode('no'));
    }

    public function testEncodeYes()
    {
        $this->markTestSkipped();
        $this->assertEquals('bvh', encode('yes'));
    }

    public function testEncodeOmg()
    {
        $this->markTestSkipped();
        $this->assertEquals('lnt', encode('OMG'));
    }

    public function testEncodeOmgWithSpaces()
    {
        $this->markTestSkipped();
        $this->assertEquals('lnt', encode('O M G'));
    }

    public function testEncodeLongWord()
    {
        $this->markTestSkipped();
        $this->assertEquals('nrmwy oldrm tob', encode('mindblowingly'));
    }

    public function testEncodeNumbers()
    {
        $this->markTestSkipped();
        $this->assertEquals('gvhgr mt123 gvhgr mt', encode('Testing, 1 2 3, testing.'));
    }

    public function testEncodeSentence()
    {
        $this->markTestSkipped();
        $this->assertEquals('gifgs rhurx grlm', encode('Truth is fiction.'));
    }

    public function testEncodeAllTheThings()
    {
        $this->markTestSkipped();
        $plaintext = 'The quick brown fox jumps over the lazy dog.';
        $encoded = 'gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt';
        $this->assertEquals($encoded, encode($plaintext));
    }
}

Version data entries

300 entries across 300 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.179 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.178 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.177 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.176 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.175 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.174 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.173 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.172 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.171 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.170 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.169 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.167 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.166 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.165 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.164 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.163 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.162 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.161 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php
trackler-2.2.1.160 tracks/php/exercises/atbash-cipher/atbash-cipher_test.php