1--TEST--
2Games_Chess_Crazyhouse->inCheck() starting position
3--SKIPIF--
4--FILE--
5<?php
6require_once dirname(__FILE__) . '/setup.php.inc';
7$board->resetGame();
8$phpunit->assertFalse($board->inCheck('W'),
9    'should be empty, and is not');
10$phpunit->assertFalse($board->inCheck('B'),
11    'should be empty, and is not');
12echo 'tests done';
13?>
14--EXPECT--
15tests done