Exemple #1
0
 public function testTargetConstructorDefaults()
 {
     $targetData = ['name' => 'name', 'namespace' => 'Namespace'];
     $target = new Target($targetData);
     $this->assertEquals(false, $target->isWithAnnotations(), 'withAnnotations');
     $this->assertEquals(false, $target->isUseClassNotations(), 'useClassNotations');
     $this->assertEquals(false, $target->isWithInitFunction(), 'withInitFunction');
 }