53
第二個參數,這是我有:如何測試在PHPUnit的mock對象
$observer = $this->getMock('SomeObserverClass', array('method'));
$observer->expects($this->once())
->method('method')
->with($this->equalTo($arg1));
但這種方法應該採取兩個參數。我只測試第一個參數是否正確傳遞(如$ arg1)。
如何測試第二個參數?
幾周前我遇到了這個問題。使用: - > with($ this-> equalTo($ foo,$ bar) 爲我工作 – ieure 2008-12-13 22:40:32