1 | <?php |
||
23 | class CompositeExpectation implements ExpectationInterface |
||
24 | { |
||
25 | /** |
||
26 | * Stores an array of all expectations for this composite |
||
27 | * |
||
28 | * @var array |
||
29 | */ |
||
30 | protected $_expectations = array(); |
||
31 | |||
32 | /** |
||
33 | * Add an expectation to the composite |
||
34 | * |
||
35 | * @param \Mockery\Expectation|\Mockery\CompositeExpectation $expectation |
||
36 | * @return void |
||
37 | */ |
||
38 | 299 | public function add($expectation) |
|
42 | |||
43 | /** |
||
44 | * @param mixed ... |
||
45 | */ |
||
46 | 79 | public function andReturn() |
|
50 | |||
51 | /** |
||
52 | * Set a return value, or sequential queue of return values |
||
53 | * |
||
54 | * @param mixed ... |
||
55 | * @return self |
||
56 | */ |
||
57 | 2 | public function andReturns() |
|
61 | |||
62 | /** |
||
63 | * Intercept any expectation calls and direct against all expectations |
||
64 | * |
||
65 | * @param string $method |
||
66 | * @param array $args |
||
67 | * @return self |
||
68 | */ |
||
69 | 292 | public function __call($method, array $args) |
|
70 | { |
||
71 | 292 | foreach ($this->_expectations as $expectation) { |
|
72 | 292 | call_user_func_array(array($expectation, $method), $args); |
|
73 | 289 | } |
|
74 | 289 | return $this; |
|
75 | } |
||
76 | |||
77 | /** |
||
78 | * Return order number of the first expectation |
||
79 | * |
||
80 | * @return int |
||
81 | */ |
||
82 | 1 | public function getOrderNumber() |
|
88 | |||
89 | /** |
||
90 | * Return the parent mock of the first expectation |
||
91 | * |
||
92 | * @return \Mockery\MockInterface |
||
93 | */ |
||
94 | 3 | public function getMock() |
|
100 | |||
101 | /** |
||
102 | * Mockery API alias to getMock |
||
103 | * |
||
104 | * @return \Mockery\MockInterface |
||
105 | */ |
||
106 | 1 | public function mock() |
|
110 | |||
111 | /** |
||
112 | * Starts a new expectation addition on the first mock which is the primary |
||
113 | * target outside of a demeter chain |
||
114 | * |
||
115 | * @param mixed ... |
||
116 | * @return \Mockery\Expectation |
||
117 | */ |
||
118 | public function shouldReceive() |
||
125 | |||
126 | /** |
||
127 | * Return the string summary of this composite expectation |
||
128 | * |
||
129 | * @return string |
||
130 | */ |
||
131 | 3 | public function __toString() |
|
141 | } |
||
142 |