public function testClassWithPublicProperties()
 {
     $publicProperties = new PublicPropertiesMap(new ReflectionClass('ProxyManagerTestAsset\\ClassWithPublicProperties'));
     $this->assertInternalType('array', $publicProperties->getDefaultValue()->getValue());
     $this->assertCount(10, $publicProperties->getDefaultValue()->getValue());
     $this->assertTrue($publicProperties->isStatic());
     $this->assertSame('private', $publicProperties->getVisibility());
     $this->assertFalse($publicProperties->isEmpty());
 }