1--TEST--
2Games_Chess_Crazyhouse->_getAllPieceSquares() no pieces of that color (black)
3--SKIPIF--
4--FILE--
5<?php
6require_once dirname(__FILE__) . '/setup.php.inc';
7$board->addPiece('W', 'N', 'h5');
8$phpunit->assertEquals(array(), $board->_getAllPieceSquares('N', 'B'), 'black');
9echo 'tests done';
10?>
11--EXPECT--
12tests done