/**
  * hasNoEntryForProcess
  *
  * @param mixed $pid The pid we're working with
  *
  * @return void
  */
 public function hasNoEntryForProcess($pid)
 {
     expectsRuntimeTable($this->tableName)->hasNoEntry($pid);
 }
 /**
  * hasNoEntryForRole
  *
  * @param string $roleName
  *        The role we're looking for
  *
  * @return void
  */
 public function hasNoEntryForRole($roleName)
 {
     expectsRuntimeTable($this->entryKey)->hasNoEntry($roleName);
 }
 /**
  * hasNoEntryForHost
  *
  * @param string $hostId
  *        The host we're looking for
  *
  * @return void
  */
 public function hasNoEntryForHost($hostId)
 {
     expectsRuntimeTable($this->entryKey)->hasNoEntry($hostId);
 }