~ubuntu-branches/ubuntu/natty/phpunit/natty

« back to all changes in this revision

Viewing changes to PHPUnit-3.5.5/Samples/BowlingGame/BowlingGameSpec.php

  • Committer: Package Import Robot
  • Author(s): Ivan Borzenkov
  • Date: 2010-12-11 18:19:39 UTC
  • mfrom: (0.11.1) (1.5.3) (12.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20101211181939-8650nbu08hf2z9v1
Tags: 3.5.5-2
fix doc-base-file-references-missing-file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * PHPUnit
 
4
 *
 
5
 * Copyright (c) 2002-2010, Sebastian Bergmann <sebastian@phpunit.de>.
 
6
 * All rights reserved.
 
7
 *
 
8
 * Redistribution and use in source and binary forms, with or without
 
9
 * modification, are permitted provided that the following conditions
 
10
 * are met:
 
11
 *
 
12
 *   * Redistributions of source code must retain the above copyright
 
13
 *     notice, this list of conditions and the following disclaimer.
 
14
 *
 
15
 *   * Redistributions in binary form must reproduce the above copyright
 
16
 *     notice, this list of conditions and the following disclaimer in
 
17
 *     the documentation and/or other materials provided with the
 
18
 *     distribution.
 
19
 *
 
20
 *   * Neither the name of Sebastian Bergmann nor the names of his
 
21
 *     contributors may be used to endorse or promote products derived
 
22
 *     from this software without specific prior written permission.
 
23
 *
 
24
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
25
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
26
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 
27
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 
28
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 
29
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 
30
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
31
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
32
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
33
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 
34
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
35
 * POSSIBILITY OF SUCH DAMAGE.
 
36
 *
 
37
 * @package    PHPUnit
 
38
 * @author     Sebastian Bergmann <sebastian@phpunit.de>
 
39
 * @copyright  2002-2010 Sebastian Bergmann <sebastian@phpunit.de>
 
40
 * @license    http://www.opensource.org/licenses/bsd-license.php  BSD License
 
41
 * @link       http://www.phpunit.de/
 
42
 * @since      File available since Release 3.3.0
 
43
 */
 
44
 
 
45
require_once 'PHPUnit/Extensions/Story/TestCase.php';
 
46
require_once 'BowlingGame.php';
 
47
 
 
48
class BowlingGameSpec extends PHPUnit_Extensions_Story_TestCase
 
49
{
 
50
    /**
 
51
     * @scenario
 
52
     */
 
53
    public function scoreForGutterGameIs0()
 
54
    {
 
55
        $this->given('New game')
 
56
             ->then('Score should be', 0);
 
57
    }
 
58
 
 
59
    /**
 
60
     * @scenario
 
61
     */
 
62
    public function scoreForAllOnesIs20()
 
63
    {
 
64
        $this->given('New game')
 
65
             ->when('Player rolls', 1)
 
66
             ->and('Player rolls', 1)
 
67
             ->and('Player rolls', 1)
 
68
             ->and('Player rolls', 1)
 
69
             ->and('Player rolls', 1)
 
70
             ->and('Player rolls', 1)
 
71
             ->and('Player rolls', 1)
 
72
             ->and('Player rolls', 1)
 
73
             ->and('Player rolls', 1)
 
74
             ->and('Player rolls', 1)
 
75
             ->and('Player rolls', 1)
 
76
             ->and('Player rolls', 1)
 
77
             ->and('Player rolls', 1)
 
78
             ->and('Player rolls', 1)
 
79
             ->and('Player rolls', 1)
 
80
             ->and('Player rolls', 1)
 
81
             ->and('Player rolls', 1)
 
82
             ->and('Player rolls', 1)
 
83
             ->and('Player rolls', 1)
 
84
             ->and('Player rolls', 1)
 
85
             ->then('Score should be', 20);
 
86
    }
 
87
 
 
88
    /**
 
89
     * @scenario
 
90
     */
 
91
    public function scoreForOneSpareAnd3Is16()
 
92
    {
 
93
        $this->given('New game')
 
94
             ->when('Player rolls', 5)
 
95
             ->and('Player rolls', 5)
 
96
             ->and('Player rolls', 3)
 
97
             ->then('Score should be', 16);
 
98
    }
 
99
 
 
100
    /**
 
101
     * @scenario
 
102
     */
 
103
    public function scoreForOneStrikeAnd3And4Is24()
 
104
    {
 
105
        $this->given('New game')
 
106
             ->when('Player rolls', 10)
 
107
             ->and('Player rolls', 3)
 
108
             ->and('Player rolls', 4)
 
109
             ->then('Score should be', 24);
 
110
    }
 
111
 
 
112
    /**
 
113
     * @scenario
 
114
     */
 
115
    public function scoreForPerfectGameIs300()
 
116
    {
 
117
        $this->given('New game')
 
118
             ->when('Player rolls', 10)
 
119
             ->and('Player rolls', 10)
 
120
             ->and('Player rolls', 10)
 
121
             ->and('Player rolls', 10)
 
122
             ->and('Player rolls', 10)
 
123
             ->and('Player rolls', 10)
 
124
             ->and('Player rolls', 10)
 
125
             ->and('Player rolls', 10)
 
126
             ->and('Player rolls', 10)
 
127
             ->and('Player rolls', 10)
 
128
             ->and('Player rolls', 10)
 
129
             ->and('Player rolls', 10)
 
130
             ->then('Score should be', 300);
 
131
    }
 
132
 
 
133
    public function runGiven(&$world, $action, $arguments)
 
134
    {
 
135
        switch($action) {
 
136
            case 'New game': {
 
137
                $world['game']  = new BowlingGame;
 
138
                $world['rolls'] = 0;
 
139
            }
 
140
            break;
 
141
 
 
142
            default: {
 
143
                return $this->notImplemented($action);
 
144
            }
 
145
        }
 
146
    }
 
147
 
 
148
    public function runWhen(&$world, $action, $arguments)
 
149
    {
 
150
        switch($action) {
 
151
            case 'Player rolls': {
 
152
                $world['game']->roll($arguments[0]);
 
153
                $world['rolls']++;
 
154
            }
 
155
            break;
 
156
 
 
157
            default: {
 
158
                return $this->notImplemented($action);
 
159
            }
 
160
        }
 
161
    }
 
162
 
 
163
    public function runThen(&$world, $action, $arguments)
 
164
    {
 
165
        switch($action) {
 
166
            case 'Score should be': {
 
167
                for ($i = $world['rolls']; $i < 20; $i++) {
 
168
                    $world['game']->roll(0);
 
169
                }
 
170
 
 
171
                $this->assertEquals($arguments[0], $world['game']->score());
 
172
            }
 
173
            break;
 
174
 
 
175
            default: {
 
176
                return $this->notImplemented($action);
 
177
            }
 
178
        }
 
179
    }
 
180
}
 
181