Current File : //opt/RZphp73/includes/test/Games_Chess/tests/Games_Chess/getPossiblePawnMoves/test_valid_w9.phpt
--TEST--
Games_Chess->getPossiblePawnMoves() valid white #9
--SKIPIF--
--FILE--
<?php
require_once dirname(__FILE__) . '/setup.php.inc';
$board->addPiece('B', 'P', 'a5');
$board->_enPassantSquare = 'a6';
$err = $board->getPossiblePawnMoves('b5', 'W');
$phpunit->assertEquals(array('a6', 'b6'), $err, 1);
echo 'tests done';
?>
--EXPECT--
tests done