getCurrentClass() public method

public getCurrentClass ( )
 public function testInitWithPropertyMetadata()
 {
     // BC
     set_error_handler(array($this, "deprecationErrorHandler"));
     $this->metadata = new PropertyMetadata(__NAMESPACE__ . '\\ExecutionContextTest_TestClass', 'myProperty');
     $this->context = new ExecutionContext($this->globalContext, $this->translator, self::TRANS_DOMAIN, $this->metadata, 'currentValue', 'Group', 'foo.bar');
     $this->assertSame(__NAMESPACE__ . '\\ExecutionContextTest_TestClass', $this->context->getCurrentClass());
     $this->assertSame('myProperty', $this->context->getCurrentProperty());
     restore_error_handler();
 }