PHP code example of qpfsoft / deunit

1. Go to this page and download the library: Download qpfsoft/deunit library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

qpfsoft / deunit example snippets


class FooTest extends TestUnit
{
    public $number;
    
    /**
     * 建立
     */
    public function setUp()
    {
        $this->number = 5;
        
        parent::setUp();
    }
    
    /**
     * 拆除
     */
    public function tearDown()
    {
        $this->number = null;
        
        parent::tearDown();
    }
    
    /**
     * 加
     * @return bool
     */
    public function testPlus()
    {
        $result = $this->number + 5;
        
        return $this->where($result, '=', 10);
    }
    
    /**
     * 减
     * @return bool
     */
    public function testLess()
    {
        $result = $this->number - 1;
        
        return $result;
    }
    
    /**
     * 除
     * @return bool
     */
    public function testExcept()
    {
        throw new Exception('missing');
    }
}

$info = FooTest::runTestUnit();
var_export($info);

array (
  'count' => 3, // 执行测试数量
  'pass' => '67%', // 测试通过率
  'fail' => '33%', // 测试失败率
  'info' => 
  array (
    'testPlus' => 'ok',
    'testLess' => 4,
    'testExcept' => 'missing',
  ),
)