Login   Register  
PHP Classes
elePHPant
Icontem

File: tests/runnable/cases/Fazi.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of jstar88  >  OPBE  >  tests/runnable/cases/Fazi.php  >  Download  
File: tests/runnable/cases/Fazi.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: OPBE
Ogame probabilistic battle engine
Author: By
Last change:
Date: 2014-02-01 16:43
Size: 698 bytes
 

Contents

Class file image Download
<?php

require ("../../RunnableTest.php");
class 
Fazi extends RunnableTest
{
    public function 
getAttachers()
    {
        
$ships = array();
        
$ships[] = $this->getShipType(2021);
        
$ships[] = $this->getShipType(2031);
        
$fleet = new Fleet(1$ships);
        
$player = new Player(1, array($fleet));
        return new 
PlayerGroup(array($player));
    }
    public function 
getDefenders()
    {
        
$ships = array();
        
$ships[] = $this->getShipType(2021);
        
$ships[] = $this->getShipType(2036546);
        
$fleet = new Fleet(2$ships);
        
$player = new Player(2, array($fleet));
        return new 
PlayerGroup(array($player));
    }
}
new 
Fazi();