Sha256: 87d21f7ce5af7e9146d7d0f043f3e031b12d723b1419705774f0b040361a0f5f

Contents?: true

Size: 1.84 KB

Versions: 96

Compression:

Stored size: 1.84 KB

Contents

<?php

require_once 'binary.php';

class BinaryTest extends \PHPUnit_Framework_TestCase
{
    public function testItParsesBinary0ToDecimal0()
    {
        $this->assertEquals(0, parse_binary('0'));
    }

    public function testItParsesBinary1ToDecimal1()
    {
        $this->assertEquals(1, parse_binary('1'));
    }

    public function testItParsesDigits()
    {
        $this->markTestSkipped();

        $this->assertEquals(2, parse_binary('10'));
        $this->assertEquals(3, parse_binary('11'));
        $this->assertEquals(4, parse_binary('100'));
        $this->assertEquals(9, parse_binary('1001'));
    }

    public function testItParsesHundreds()
    {
        $this->markTestSkipped();

        $this->assertEquals(128, parse_binary('10000000'));
        $this->assertEquals(315, parse_binary('100111011'));
        $this->assertEquals(800, parse_binary('1100100000'));
        $this->assertEquals(999, parse_binary('1111100111'));
    }

    public function testItParsesMaxInt()
    {
        $this->markTestSkipped();

        $this->assertEquals(
            9223372036854775807,
            parse_binary('111111111111111111111111111111111111111111111111111111111111111')
        );
    }

    public function testItParsesValuesWithLeadingZeros()
    {
        $this->markTestSkipped();

        $this->assertEquals(1, parse_binary('01'));
        $this->assertEquals(2, parse_binary('0010'));
        $this->assertEquals(3, parse_binary('00011'));
    }

    /**
     * @dataProvider invalidValues
     */
    public function testItOnlyAcceptsStringsContainingZerosAndOnes($value)
    {
        $this->markTestSkipped();

        $this->setExpectedException(InvalidArgumentException::class);

        parse_binary($value);
    }

    public function invalidValues()
    {
        return [
            ['2'], ['12345'], ['a'], ['0abcdef'],
        ];
    }
}

Version data entries

96 entries across 96 versions & 1 rubygems

Version Path
trackler-2.0.6.0 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.18 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.17 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.16 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.15 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.14 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.13 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.12 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.11 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.10 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.9 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.8 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.7 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.6 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.5 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.4 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.3 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.2 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.1 tracks/php/exercises/binary/binary_test.php
trackler-2.0.5.0 tracks/php/exercises/binary/binary_test.php