コード例 #1
0
 /**
  * @test
  * @author Robert Lemke <*****@*****.**>
  */
 public function isPropertyTaggedWithReturnsTrueIfTheSpecifiedClassPropertyIsTaggedWithTheGivenTag()
 {
     $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);
     $this->assertTrue($reflectionService->isPropertyTaggedWith('F3\\FLOW3\\Tests\\Reflection\\Fixture\\DummyClassWithProperties', 'firstProperty', 'firsttag'));
     $this->assertFalse($reflectionService->isPropertyTaggedWith('F3\\FLOW3\\Tests\\Reflection\\Fixture\\DummyClassWithProperties', 'firstProperty', 'nothing'));
     $this->assertFalse($reflectionService->isPropertyTaggedWith('F3\\FLOW3\\Tests\\Reflection\\Fixture\\DummyClassWithProperties', 'noProperty', 'firsttag'));
 }