コード例 #1
0
ファイル: ScopeTest.php プロジェクト: tomaka17/niysu
 public function testGetByType()
 {
     $scope = new Scope();
     $scope->set('testA', new \Exception());
     $this->assertNotNull($scope->getByType('\\Exception'));
 }