1--TEST--
2Games_Chess_Losers->gameOver() black draw
3--SKIPIF--
4--FILE--
5<?php
6require_once dirname(__FILE__) . '/setup.php.inc';
7$board->resetGame();
8$board->blankBoard();
9$board->addPiece('B', 'K', 'h8');
10$board->addPiece('W', 'P', 'a3');
11$board->addPiece('B', 'P', 'a4');
12$board->addPiece('W', 'P', 'h7');
13$board->addPiece('W', 'K', 'h6');
14$board->_move = 'B';
15$phpunit->assertEquals('D', $board->gameOver(), 1);
16echo 'tests done';
17?>
18--EXPECT--
19tests done