コード例 #1
0
ファイル: ContainerTest.php プロジェクト: hybr/jpm
 public function testResetTypes()
 {
     Container::add('testing', 'Mandango\\Tests\\Type\\TestingType');
     Container::reset();
     $this->assertTrue(Container::has('string'));
     $this->assertFalse(Container::has('testing'));
 }