コード例 #1
0
ファイル: ListActionsSpec.php プロジェクト: jonfm/domin
 protected function before()
 {
     parent::before();
     $this->web->factory->setSingleton($this->action->registry);
     $this->web->factory->setSingleton(new Menu($this->action->registry));
 }
コード例 #2
0
ファイル: FindFailureSource.php プロジェクト: rtens/scrut
 function emptyTestSuite()
 {
     $this->suite = new FindFailureSource_Empty(new TestFilter());
     $this->suite->run($this->listener);
     $this->assertLocationIsAtLineOfSuite(0);
 }
コード例 #3
0
ファイル: RunStaticTestSuite.php プロジェクト: rtens/scrut
 function __construct(TestFilter $filter = null)
 {
     parent::__construct($filter ?: new TestFilter());
     self::$constructed++;
 }