1

我试图将一个对象作为“with”的参数与我的模拟对象进行比较。当我比较var_dump预期和实际时,它们看起来是等效的。->with我的预感是我在参数中做错了什么。提前致谢

我的测试代码

public function testAddEntry()
{
    $expected = new Entry();
    var_dump($expected);
    $dbRef = $this->getMock('EntriesDAO');
    $dbRef->expects($this->once())->method('insert')
        ->with($expected);
    $actual = EntryHelper::addEntry($dbRef, $req);

要测试的功能代码

static function addEntry($iDao, $req)
{
$actual = new Entry();
var_dump($actual);
$actual->newId = $iDao->insert($actual);

控制台输出

class Entry#212 (4) {
  public $id =>
  NULL
  public $content =>
  string(0) ""
  public $date =>
  string(0) ""
  public $userId =>
  NULL
}
class Entry#209 (4) {
  public $id =>
  NULL
  public $content =>
  string(0) ""
  public $date =>
  string(0) ""
  public $userId =>
  NULL
}

Time: 0 seconds, Memory: 2.75Mb

There was 1 failure:

1) EntryHelperTest::testAddEntry
Expectation failed for method name is equal to <string:insert> when invoked 1 time(s).
Parameter 0 for invocation EntriesDAO::insert(Entry Object (...)) does not match expected value.
Failed asserting that two objects are equal.
4

2 回答 2

1

很可能,PHPUnit 正在使用标识运算符 (===)来检查对象是否相等。正如手册中所说

...当使用恒等运算符 (===) 时,对象变量是相同的当且仅当它们引用同一类的同一实例时

由于您在方法 addEntry() 中创建了一个新的 Entry 实例,因此比较将失败。

于 2013-04-07T15:21:36.777 回答
0

根本原因。我正在将返回的值分配给对象。在我正在测试的功能中,

$actual->newId = $iDao->insert($actual); 

这一定是在修改比较值。我通过将作业分开来修复它

$newId = $iDao->insert($actual);

*注意,在调用模拟之后修改 $actual 仍然会中断测试。所以这行不通。

$actual->id = $newId;
于 2013-04-07T15:30:14.033 回答