1--TEST--
2Games_Chess_Crazyhouse->_getAllPieceSquares() multiple pieces (some promoted pawns) (white)
3--SKIPIF--
4--FILE--
5<?php
6require_once dirname(__FILE__) . '/setup.php.inc';
7$board->addPiece('W', 'N', 'h5');
8$board->addPiece('W', 'N', 'a5');
9$board->addPiece('W', 'N', 'g4');
10$phpunit->assertEquals(array('g4', 'h5', 'a5'), $board->_getAllPieceSquares('N', 'W'), 'white');
11echo 'tests done';
12?>
13--EXPECT--
14tests done