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