要測試array_unshift()
函數的正確性,你可以創建一個測試用例,包括輸入數組、要添加的元素和預期的輸出結果
<?php
function test_array_unshift() {
// 創建一個測試用例數組
$testCases = [
[
'inputArray' => [1, 2, 3],
'elementsToAdd' => [0],
'expectedOutput' => [0, 1, 2, 3]
],
[
'inputArray' => ['b', 'c'],
'elementsToAdd' => ['a'],
'expectedOutput' => ['a', 'b', 'c']
],
[
'inputArray' => [],
'elementsToAdd' => [1],
'expectedOutput' => [1]
],
[
'inputArray' => [1, 2, 3],
'elementsToAdd' => [4, 5],
'expectedOutput' => [4, 5, 1, 2, 3]
]
];
// 遍歷測試用例并檢查 array_unshift() 函數的正確性
foreach ($testCases as $index => $testCase) {
$inputArray = $testCase['inputArray'];
$elementsToAdd = $testCase['elementsToAdd'];
$expectedOutput = $testCase['expectedOutput'];
array_unshift($inputArray, ...$elementsToAdd);
if ($inputArray === $expectedOutput) {
echo "Test case {$index} passed.\n";
} else {
echo "Test case {$index} failed. Expected: ";
print_r($expectedOutput);
echo ", but got: ";
print_r($inputArray);
echo "\n";
}
}
}
// 調用測試函數
test_array_unshift();
?>
這個腳本定義了一個名為test_array_unshift()
的測試函數,其中包含四個測試用例。每個測試用例都有一個輸入數組、要添加的元素和預期的輸出結果。然后,我們使用array_unshift()
函數修改輸入數組,并將其與預期輸出進行比較。如果它們相等,則測試用例通過;否則,測試用例失敗,并顯示預期輸出和實際輸出。最后,我們調用test_array_unshift()
函數來運行測試。