コード例 #1
0
ファイル: ClazzTest.php プロジェクト: niklongstone/manager
 public function testSetImports()
 {
     $this->class->addImport($iterator = new Import('IteratorAggregate'));
     $this->class->setImports(array($countable = new Import('Countable'), $arrayAccess = new Import('ArrayAccess')));
     $this->assertSame(array('ArrayAccess' => $arrayAccess, 'Countable' => $countable), $this->class->getImports());
 }