1--TEST--
2Games_Chess->_getKnightSquares() e4
3--SKIPIF--
4--FILE--
5<?php
6require_once dirname(__FILE__) . '/setup.php.inc';
7$ret = $board->_getKnightSquares('e4');
8$phpunit->assertEquals(array (
9  'WNW' => 'c5',
10  'NNW' => 'd6',
11  'NNE' => 'f6',
12  'ENE' => 'g5',
13  'ESE' => 'g3',
14  'SSE' => 'f2',
15  'SSW' => 'd2',
16  'WSW' => 'c3',
17), $ret, 'Incorrect knight squares 2');
18echo 'tests done';
19?>
20--EXPECT--
21tests done