getModules() public method

public getModules ( )
コード例 #1
0
ファイル: ContainerTest.php プロジェクト: kohkimakimoto/altax
 public function testSetAndGetModule()
 {
     $container = new Container();
     $container->setModules(array("abc" => "def"));
     $this->assertSame(array("abc" => "def"), $container->getModules());
 }