您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在PHP中使用PHPUnit實現單元測試,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
安裝
首先下載PHPUnit,官網:https://phpunit.de/ 根據自己的PHP版本下載對應的PHPUnit版本,我本地是PHP5.5,所以這里我下載PHPUnit4.8。下載完成得到phpunit-4.8.35.phar文件,放到任意目錄,這邊我放到D:\phpunit下,并把文件名改為:phpunit.phar 。配置環境變量:右擊我的電腦-》屬性-》高級系統設置-》環境變量-》編輯path在最后添加phpunit.phar的路徑,這里我是D:\phpunit,所以在最后添加D:\phpunit 。
打開命令行win+R輸入cmd,進入到D:\phpunit
cd /d D:\phpunit
安裝phpunit
echo @php "%~dp0phpunit.phar" %* > phpunit.cmd
查看是否安裝成功
phpunit --version
如果顯示phpunit的版本信息,說明安裝成功了,這邊我顯示:PHPUnit 4.8.35 by Sebastian Bergmann and contributors.
測試
先寫一個需要測試的類,該類有一個eat方法,方法返回字符串:eating,文件名為Human.php
<?php class Human { public function eat() { return 'eating'; } }
再寫一個phpunit的測試類,測試Human類的eat方法,必須引入Human.php文件、phpunit,文件名為test1.php
<?php include 'Human.php'; use PHPUnit\Framework\TestCase; class TestHuman extends TestCase { public function testEat() { $human = new Human; $this->assertEquals('eating', $human->eat()); } } ?>
其中assertEquals方法為斷言,判斷eat方法返回是否等于'eating',如果返回一直則成功否則返回錯誤,運行測試:打開命令行,進入test1.php的路徑,然后運行測試:
phpunit test1.php
返回信息:
PHPUnit 4.8.35 by Sebastian Bergmann and contributors.
.
Time: 202 ms, Memory: 14.75MB
OK (1 test, 1 assertion)
上述內容就是怎么在PHP中使用PHPUnit實現單元測試,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。