/** * コンストラクタ * * @param string $app アプリケーションの種類 (ex. front, dev,... ) * @param string $test_class テストに用いるテストクラス (default = sfBrowser) */ public function __construct($app, $test_class = 'sfBrowser') { parent::__construct($app); if ($test_class == 'sfBrowser') { $this->test = new $test_class(); } else { $this->test = new $test_class(new sfBrowser()); } }
/** * コンストラクタ * * @param string $app アプリケーションの種類 (ex. front, dev,... ) * @param string $test_num テストの数 */ public function __construct($app, $test_num = null) { parent::__construct($app); if ($test_num === null) { $this->test = new lime_test(); } else { $this->test = new lime_test($test_num); } }