Пример #1
0
 function testSettingReturns()
 {
     $mock = new TestDummy();
     $mock->setReturnValue('anotherMethod', 33, array(3));
     $mock->setReturnValue('anotherMethod', 22);
     $mock->setReturnValueAt(2, 'anotherMethod', 44, array(3));
     $this->assertEqual($mock->anotherMethod(), 22);
     $this->assertEqual($mock->anotherMethod(3), 33);
     $this->assertEqual($mock->anotherMethod(3), 44);
 }