Login   Register  
PHP Classes
elePHPant
Icontem

File: samples/sample2.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Benjie Velarde  >  SquareSpec  >  samples/sample2.php  >  Download  
File: samples/sample2.php
Role: Example script
Content type: text/plain
Description: Example script
Class: SquareSpec
Test PHP code using Behavior Driven Development
Author: By
Last change:
Date: 2013-04-30 02:48
Size: 1,455 bytes
 

Contents

Class file image Download
<?php
//--------------------------------------------------------------------------------------------------------------------------------
// 
//    From console, run: $> php square.php  
//    to test all <spec-name>.specs.php files on your designated 'specs' folder (see: square.php)
//
//    To test a single spec: $>php square.php <my-spec>
//    to test <my-spec>.specs.php
//
//--------------------------------------------------------------------------------------------------------------------------------
/*
GIVEN:

class Bowling {    
    public $score = 0;
    public $strike = FALSE;
    
    public function hit($pins) {
        if ($pins == 10) {
            $this->strike = TRUE;
            $this->score = $pins * 2;
        } 
        if ($pins) {
            $this->score = $pins;
        }
    } 
}
*/
include('../square_spec.php');

use 
SquareSpec as SQ;

SQ\describe('Bowling')->spec(
    
SQ\before(
        
SQ\let('bowling')->be(new Bowling)
    ),
    
SQ\describe('#score')->spec(
        
SQ\it("returns 0 for all gutter game")->spec(function($bowling) {
            for (
$i 0$i 20$i++) {
                
$bowling->hit(0);
            }
            
$bowling->score->should->equals(0);
        })
    ),
    
SQ\describe('#strike')->spec(
        
SQ\it("returns 'strike' if all 10 pins are down")->spec(function($bowling) {
            
$bowling->hit(10);
            
$bowling->strike->should->be();
        })
    )
)->
test();
?>