Current File : //opt/RZphp74/includes/test/Games_Chess/tests/Games_Chess_Crazyhouse/inCheck/test_starting.phpt
--TEST--
Games_Chess_Crazyhouse->inCheck() starting position
--SKIPIF--
--FILE--
<?php
require_once dirname(__FILE__) . '/setup.php.inc';
$board->resetGame();
$phpunit->assertFalse($board->inCheck('W'),
    'should be empty, and is not');
$phpunit->assertFalse($board->inCheck('B'),
    'should be empty, and is not');
echo 'tests done';
?>
--EXPECT--
tests done