Exemplo n.º 1
0
 /**
  * @test
  */
 public function getClassTagsValues()
 {
     $service = new ReflectionService();
     $classValues = $service->getClassTagsValues(get_class($this));
     $this->assertEquals(array('firsttest' => array('test for reflection'), 'anothertest' => array('second test for reflection', 'second test for reflection with second value')), $classValues);
 }