Added test files

This commit is contained in:
DHTMLGoodies
2013-01-17 15:14:18 +01:00
parent 9ff7fb1998
commit 13b290a60b
2 changed files with 1834 additions and 0 deletions

27
autoload.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'board0x88config' => '/Board0x88Config.php',
'dgtgameparser' => '/DGTGameParser.php',
'fenparser0x88' => '/FenParser0x88.php',
'gameparser' => '/GameParser.php',
'movebuilder' => '/MoveBuilder.php',
'moveparser' => '/MoveParser.php',
'parsertest' => '/test/ParserTest.php',
'pgngameparser' => '/PgnGameParser.php',
'pgnparser' => '/PgnParser.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
}
);
// @codeCoverageIgnoreEnd

1807
test/ParserTest.php Normal file

File diff suppressed because it is too large Load Diff