PHP Classes

File: tests/runnable/cases/CrusherVsSpy.php

Recommend this page to a friend!
  Classes of Nicola Covolo   OPBE   tests/runnable/cases/CrusherVsSpy.php   Download  
File: tests/runnable/cases/CrusherVsSpy.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: OPBE
Ogame probabilistic battle engine
Author: By
Last change:
Date: 10 years ago
Size: 1,500 bytes
 

Contents

Class file image Download
<?php

/**
 * OPBE
 * Copyright (C) 2013 Jstar
 *
 * This file is part of OPBE.
 *
 * OPBE is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * OPBE is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with OPBE. If not, see <http://www.gnu.org/licenses/>.
 *
 * @package OPBE
 * @author Jstar <frascafresca@gmail.com>
 * @copyright 2013 Jstar <frascafresca@gmail.com>
 * @license http://www.gnu.org/licenses/ GNU AGPLv3 License
 * @version beta(26-10-2013)
 * @link https://github.com/jstar88/opbe
 */
require ("../../RunnableTest.php");
class
CrusherVsSpy extends RunnableTest
{
    public function
getAttachers()
    {
       
$fleet = new Fleet(1,array($this->getShipType(206, 150)));
       
$player = new Player(1, array($fleet));
        return new
PlayerGroup(array($player));
    }
    public function
getDefenders()
    {
       
$fleet = new Fleet(2,array($this->getShipType(210, 1250)));
       
$player = new Player(2, array($fleet));
        return new
PlayerGroup(array($player));
    }
}
new
CrusherVsSpy();

?>