TestSuite::__construct PHP 메소드

__construct() 공개 메소드

Sets the name of the test suite.
public __construct ( string $label = false )
$label string Name sent at the start and end of the test.
    public function __construct($label = false)
    {
        $this->label = $label;
    }

Usage Example

 function __construct()
 {
     parent::__construct();
     $this->addFile(dirname(__FILE__) . '/unit/unit-test-wpps-module.php');
     $this->addFile(dirname(__FILE__) . '/unit/unit-test-wpps-settings.php');
     $this->addFile(dirname(__FILE__) . '/unit/unit-test-wpps-instance-class.php');
 }
All Usage Examples Of TestSuite::__construct