コード例 #1
0
ファイル: ClazzTest.php プロジェクト: niklongstone/manager
 public function testHasImports()
 {
     $this->assertFalse($this->class->hasImports());
     $this->class->addImport(new Import('IteratorAggregate'));
     $this->assertTrue($this->class->hasImports());
     $this->class->removeImport('IteratorAggregate');
     $this->assertFalse($this->class->hasImports());
 }