1--TEST--
2Games_Chess_Losers->_capturePossible() not possible castle
3--SKIPIF--
4--FILE--
5<?php
6require_once dirname(__FILE__) . '/setup.php.inc';
7$board->addPiece('W', 'K', 'e1');
8$board->addPiece('B', 'B', 'g1');
9$phpunit->assertFalse($board->_capturePossible(), 'nope');
10echo 'tests done';
11?>
12--EXPECT--
13tests done