现在有一天我在玩PHPUnit。我已经阅读了它的文档,但我无法很好地理解它。让我解释一下我的情况。
我在一个类中有一个函数,它需要三个参数1 array, 2 some string, 3 a class object
。此函数通过将第二个参数作为数组的索引并将结果作为该索引的对象来返回数组。我的功能如下
public function construct($testArray, $test,$analysisResult) {
$postedTest = explode('_', $test);
$testName = end($postedTest);
$postedTest = implode("_", array_slice($postedTest, 0, -1));
if (in_array($postedTest, array_keys($testArray))) {
$testArray[$postedTest][$testName] = $analysisResult;
} else {
$testArray[$postedTest] = array($testName => $analysisResult);
}
return $testArray;
}
如果我调用这个函数
$constructObj = new Application_Model_ConstructTree();
$test=$this->getMockForAbstractClass('Abstract_Result');
$test->level = "Error";
$test->infoText = "Not Immplemented";
$testArray = Array('databaseschema' => Array('Database' => $test));
$result = $constructObj->construct($testArray,"Database",$test);
该函数返回数组,如
Array
(
[databaseschema] => Array
(
[Database] => AnalysisResult Object
(
[isRepairable] => 1
[level] => Error
[infoText] => Not Implemented
)
)
)
现在我想编写一个 PHPUnit 测试来检查对象的属性是否isRepairable, level and infoText
存在并且不为空。我有一个想法,assertNotEmpty
可以assertAttributeEmpty
做一些事情,但我无法理解如何去做。
我的测试看起来像
public function testcontruct() {
$constructObj = new Application_Model_ConstructTree();
$test=$this->getMockForAbstractClass('Abstract_Result');
$test->level = "Error";
$test->infoText = "Not Immplemented";
$testArray = Array('databaseschema' => Array('Database' => $test));
$result = $constructObj->construct($testArray,"Database",$test);
$this->assertNotCount(0, $result);
$this->assertNotContains('databaseschema', $result);
}
任何人都可以请指导:-)