public function getAuthorsUsername() : string
 {
     return $this->author->getUsername();
 }
 public function testGetSetUsername()
 {
     $this->author->setUsername('test');
     $this->assertEquals('test', $this->author->getUsername());
 }