public function setUp()
 {
     parent::setUp();
     $this->fixture = $this->loadFixture('Test\\Fixtures\\User\\NewUser', 'Domain\\Entities\\User');
     $this->user = $this->fixture->getAsUser();
 }
 public function setUp()
 {
     parent::setUp();
     $this->fixture = $this->loadFixture('Test\\Fixtures\\Post\\NewPost', 'Domain\\Entities\\Post');
     $this->post = $this->fixture->getAsPost();
 }
 public function setUp()
 {
     parent::setUp();
     $this->fixture = $this->loadFixture('Test\\Fixtures\\Comment\\NewComment', 'Domain\\Entities\\Comment');
     $this->comment = $this->fixture->getAsComment();
 }