/**
  * @test
  * @author Robert Lemke <*****@*****.**>
  */
 public function getPropertyTagsValuesReturnsArrayOfTagsAndValuesOfAProperty()
 {
     $availableClassNames = array('F3\\FLOW3\\Tests\\Reflection\\Fixture\\DummyClassWithProperties');
     $reflectionService = new \F3\FLOW3\Reflection\ReflectionService();
     $reflectionService->setStatusCache($this->getMock('F3\\FLOW3\\Cache\\Frontend\\StringFrontend', array(), array(), '', FALSE));
     $reflectionService->setDataCache($this->getMock('F3\\FLOW3\\Cache\\Frontend\\VariableFrontend', array(), array(), '', FALSE));
     $reflectionService->injectSystemLogger($this->getMock('F3\\FLOW3\\Log\\SystemLoggerInterface'));
     $reflectionService->initialize($availableClassNames);
     $expectedTags = array('firsttag' => array(), 'secondtag' => array('x', 'y'), 'var' => array('mixed'));
     $detectedTags = $reflectionService->getPropertyTagsValues('F3\\FLOW3\\Tests\\Reflection\\Fixture\\DummyClassWithProperties', 'firstProperty');
     ksort($detectedTags);
     $this->assertEquals($expectedTags, $detectedTags);
 }