1--TEST--
2Games_Chess->_getKnightSquares() h8
3--SKIPIF--
4--FILE--
5<?php
6require_once dirname(__FILE__) . '/setup.php.inc';
7$ret = $board->_getKnightSquares('h8');
8$phpunit->assertEquals(array (
9  'SSW' => 'g6',
10  'WSW' => 'f7',
11), $ret, 'Incorrect knight squares 2');
12echo 'tests done';
13?>
14--EXPECT--
15tests done