Current File : //opt/RZphp73/includes/test/Games_Chess/tests/Games_Chess/getPossibleKnightMoves/test_valid_w1.phpt
--TEST--
Games_Chess->getPossibleKnightMoves() valid white #1
--SKIPIF--
--FILE--
<?php
require_once dirname(__FILE__) . '/setup.php.inc';
$board->resetGame();
$err = $board->getPossibleKnightMoves('b1', 'W');
$phpunit->assertEquals(array('a3', 'c3'), $err, 1);
echo 'tests done';
?>
--EXPECT--
tests done