Exemplo n.º 1
0
 /**
  * @depends testBoardCreation
  */
 public function testGetSquares(Board $board)
 {
     $squares = $board->getSquares();
     $this->assertTrue(is_array($squares));
     $this->assertEquals(64, count($squares));
     $square = array_shift($squares);
     $this->assertTrue($square instanceof Square);
 }