PHPUnit 組織測試

首先是目錄結構php

源文件夾爲 src/ bootstrap

測試文件夾爲 tests/函數

User.php單元測試

<?php
class Errorcode
{
    const NAME_IS_NULL = 0;
}

class User
{
    public $name;
    public function __construct($name)
    {
        $this->name=$name;
    }

    public function Isempty()
    {

        try{
            if(empty($this->name))
            {
                throw new Exception('its null',Errorcode::NAME_IS_NULL);
            }
        }catch(Exception $e){
            return $e->getMessage();
        }

        return 'welcome '.$this->name;
    }
}

對應的單元測試文件  UserTest.php測試

<?php
use PHPUnit\Framework\TestCase;

class UserTest extends TestCase
{
    protected $user;
    public function setUp()
    {
        $this->user = new User('');
    }
    public function testIsempty()
    {
        $this->user->name='mark';
        $result =$this->user->Isempty();
        $this->assertEquals('welcome mark',$result);

        $this->user->name='';
        $results =$this->user->Isempty();
        $this->assertEquals('its null',$results);

    }


}

 

第二個單元測試代碼由於要引入 要測試的類  這裏能夠用 自動載入 避免文件多的話 太多include  this

因此在src/ 文件夾裏寫 autoload.phpspa

<?php

function __autoload($class){
    include $class.'.php';
}

spl_autoload_register('__autoload');

當須要User類時,就去include User.php。寫完__autoload()函數以後要用spl_autoload_register()註冊上。code

 

雖然能夠自動載入,可是要執行的命令變得更長了。xml

打開cmd命令以下blog

phpunit --bootstrap src/autoload.php tests/UserTest

 

因此咱們還能夠在根目錄寫一個配置文件phpunit.xml來爲項目指定bootstrap,這樣就不用每次都寫在命令裏了。

phpunit.xml

<phpunit bootstrap="src/autoload.php">
</phpunit>

而後

打開cmd命令 執行MoneyTest 命令以下

phpunit tests/UserTest

打開cmd命令 執行tests下面全部的文件 命令以下  

phpunit tests
相關文章
相關標籤/搜索