Solved user session bug

This commit is contained in:
Kevin Frantz
2018-07-15 13:42:59 +02:00
parent 7470686c56
commit 228c261db1
2 changed files with 35 additions and 3 deletions

View File

@@ -26,6 +26,9 @@ class CoreTest extends TestCase
protected function setUp():void{
$this->core = new Core();
$this->user = new User();
$this->user->setId(1);
$this->user->setEmail('test@mail.test');
$this->user->setPasswordHashByPassword('passwort:)');
$this->core->setUser($this->user);
}
@@ -42,7 +45,7 @@ class CoreTest extends TestCase
}
public function testSession():void{
$this->assertEquals($this->core->getUser(), $_SESSION['user']);
$this->assertEquals($this->core->getUser()->getPasswordHash(), $_SESSION['user']['hash']);
}
}