TestCase::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->mediaPath = dirname(__FILE__) . '/songs';
    }

Usage Example

 /**
  * Constructor
  *  
  */
 public function __construct($name, $url, $user, $pass)
 {
     parent::__construct($name);
     $this->url = new URL($url);
     $this->url->setUser($user);
     $this->url->setPassword($pass);
 }
All Usage Examples Of TestCase::__construct