public function testCallParentProtectedMethodFromSubClass()
 {
     $this->expectOutputString('Method can be called from instances of the same class hierarchy only.');
     $subObj = new SubClass();
     $subObj->callParentProtectedMethod();
 }