/**
  * testGetValueReturnsInjectedValueInstance
  *
  * @return void
  * @group pdepend
  * @group pdepend::ast
  * @group unittest
  */
 public function testGetValueReturnsInjectedValueInstance()
 {
     $declarator = new PHP_Depend_Code_ASTVariableDeclarator();
     $declarator->setValue(new PHP_Depend_Code_Value());
     self::assertType(PHP_Depend_Code_Value::CLAZZ, $declarator->getValue());
 }