private function createEntry()
 {
     $rnd = rand(0, 9999) . '-' . time();
     $entity = new \IdnoPlugins\Text\Entry();
     $entity->setOwner($this->user());
     $entity->title = "The Title {$rnd}";
     $entity->body = 'Unlikely to be present elsewhere in the post template: hamstring baseball duckbill firecracker';
     $entity->save(true);
     return $entity;
 }