You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
coffee-table/tests/TableTest.php

67 lines
1.1 KiB

<?php
namespace Coffee;
/**
* Created by PhpStorm.
* User: delmadord
* Date: 3/16/16
* Time: 7:59 AM
*/
class TableTest extends \PHPUnit_Framework_TestCase {
public function testRemainingTiles() {
$tableMap = [
[0, 1],
[1, 0],
];
$table = new Table($tableMap);
$this->assertEquals($tableMap, $table->getRemainingTiles());
}
public function testHeight() {
$tableMap = [
[0, 1, 0, 1],
[1, 0, 0, 0],
[0, 0, 0, 1],
[0, 0, 0, 1]
];
$table = new Table($tableMap);
$this->assertEquals(4, $table->getHeight());
}
public function testWidth() {
$tableMap = [
[0, 1, 0],
[1, 0, 0, 0],
[0, 0, 0],
[0, 0, 0]
];
$table = new Table($tableMap);
$this->assertEquals(4, $table->getWidth());
}
public function testTileLiesOnTable() {
$tableMap = [
[0, 1],
[1, 0],
];
$table = new Table($tableMap);
$tile = new Tile(0, 0);
$this->assertTrue($table->isValidForTile($tile));
}
public function testTileLiesOutsideTable() {
$tableMap = [
[0, 1],
[1, 0],
];
$table = new Table($tableMap);
$tile = new Tile(2, 1);
$this->assertFalse($table->isValidForTile($tile));
}
}