Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 6496e204f77658ff2108478d2951b08a > files > 300

php-pear-Games_Chess-1.0.1-5mdv2010.0.noarch.rpm

<?php
require_once 'Games/Chess.php';
require_once 'Games/Chess/Standard.php';
require_once dirname(dirname(dirname(__FILE__))) . '/phpt_test.php.inc';
$board = new Games_Chess_Standard();
$board->blankBoard();
$phpunit = new PEAR_PHPTest();
class Games_Chess_testStandard extends Games_Chess_Standard {
    var $pieces = array();
    function addPiece($color, $type, $square)
    {
        $this->pieces[] = array($color, $type, $square);
    }
}