#5240 |
TestCase::createTestProxy() |
10.1.0 |
|
#5241 |
TestCase::getMockForAbstractClass() |
10.1.0 |
|
#5242 |
TestCase::getMockFromWsdl() |
10.1.0 |
|
#5243 |
TestCase::getMockForTrait() |
10.1.0 |
|
#5244 |
TestCase::getObjectForTrait() |
10.1.0 |
|
#5305 |
MockBuilder::getMockForAbstractClass() |
10.1.0 |
|
#5306 |
MockBuilder::getMockForTrait() |
10.1.0 |
|
#5307 |
MockBuilder::disableProxyingToOriginalMethods() |
10.1.0 |
|
#5307 |
MockBuilder::enableProxyingToOriginalMethods() |
10.1.0 |
|
#5307 |
MockBuilder::setProxyTarget() |
10.1.0 |
|
#5308 |
MockBuilder::allowMockingUnknownTypes() |
10.1.0 |
|
#5308 |
MockBuilder::disallowMockingUnknownTypes() |
10.1.0 |
|
#5309 |
MockBuilder::disableAutoload() |
10.1.0 |
|
#5309 |
MockBuilder::enableAutoload() |
10.1.0 |
|
#5315 |
MockBuilder::disableArgumentCloning() |
10.1.0 |
|
#5315 |
MockBuilder::enableArgumentCloning() |
10.1.0 |
|
#5320 |
MockBuilder::addMethods() |
10.1.0 |
|
#5415 |
Support for doubling interfaces (or classes) that have a method named method |
11.0.0 |
|
#5423 |
TestCase::onConsecutiveCalls() |
10.3.0 |
Use $double->willReturn() instead of $double->will($this->onConsecutiveCalls()) |
#5423 |
TestCase::returnArgument() |
10.3.0 |
Use $double->willReturnArgument() instead of $double->will($this->returnArgument()) |
#5423 |
TestCase::returnCallback() |
10.3.0 |
Use $double->willReturnCallback() instead of $double->will($this->returnCallback()) |
#5423 |
TestCase::returnSelf() |
10.3.0 |
Use $double->willReturnSelf() instead of $double->will($this->returnSelf()) |
#5423 |
TestCase::returnValue() |
10.3.0 |
Use $double->willReturn() instead of $double->will($this->returnValue()) |
#5423 |
TestCase::returnValueMap() |
10.3.0 |
Use $double->willReturnMap() instead of $double->will($this->returnValueMap()) |
#5535 |
Configuring expectations using expects() on test stubs |
11.0.0 |
Create a mock object when you need to configure expectations on a test double |