fixed matchesInvocation() bug
This commit is contained in:
parent
16533b01d7
commit
f65999bfa0
@ -61,11 +61,15 @@
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function andToEcho($value) {
|
||||||
|
return $this->toEcho($value);
|
||||||
|
}
|
||||||
|
|
||||||
public function toReturn($value) {
|
public function toReturn($value) {
|
||||||
$this->returnValue = $value;
|
$this->returnValue = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function andReturn($value) {
|
public function andToReturn($value) {
|
||||||
$this->toReturn($value);
|
$this->toReturn($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,7 +86,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected function countIsAcceptable($count) {
|
protected function countIsAcceptable($count) {
|
||||||
switch ($count) {
|
switch ($this->count) {
|
||||||
case TestCase::ANY:
|
case TestCase::ANY:
|
||||||
return true;
|
return true;
|
||||||
case TestCase::AT_LEAST_ONCE:
|
case TestCase::AT_LEAST_ONCE:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user