public function testGetProtectedPropertyFromSubClass()
 {
     $obj = new SubClass();
     $publicProperty = $obj->getProtectedProperty();
     $this->assertEquals('Protected property default value of BaseClass', $publicProperty);
 }