/**
  * Sets the test's $profile property.
  *
  * @param \Pharborist\Objects\ClassNode $test
  */
 private function setProfile(ClassNode $test)
 {
     if (!$test->hasProperty('profile')) {
         $test->appendProperty(ClassMemberNode::create('profile', StringNode::create("'standard'"), 'protected'));
     }
 }