Komut satırında PHPUnit ile başlamak nasıl?

0 Cevap php

Ben bir MacBook Pro, PEAR, PHPUnit, I phpunit yazabilirsiniz komut satırında bu yüzden ve ben {[get yüklü yüklü (4)]} yardım.

Şimdi get a test going Ben oradan inşa böylece istiyoruz.

I index.php Bu içeriğin adlı bir dosya var:

<?php

require_once '?????';


class Product {

    protected $id;

    public function __construct($id) 
    {
        $this->id = $id;
    }

    public function get_id()
    {
        return $this->id;
    }

}

class ProductTest extends PHPUnit_Framework_TestCase
{
    function testBasis()
    {
        $instance = new Product(1);

        $this->assertInstanceOf('Product',$instance);
        $this->assert($instance->get_id(), 1);
    }
}

Komut satırında, ben dosyasının bulunduğu ve benzeri bir şey yazın olduğu dizine gitmek istiyorum:

phpunit ?????

What are the next steps so that I am able to test the above class with PHPUnit from the command line?

0 Cevap