mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-04-22 13:12:26 +02:00
52 lines
1.1 KiB
PHP
52 lines
1.1 KiB
PHP
<?php
|
|
namespace core;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use entity\user\User;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
class CoreTest extends TestCase
|
|
{
|
|
/**
|
|
*
|
|
* @var Core
|
|
*/
|
|
protected $core;
|
|
|
|
/**
|
|
*
|
|
* @var User
|
|
*/
|
|
protected $user;
|
|
|
|
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);
|
|
}
|
|
|
|
public function testTwig():void{
|
|
$this->assertInstanceOf(\Twig_Environment::class, $this->core->getTwig());
|
|
}
|
|
|
|
public function testDatabase():void{
|
|
$this->assertInstanceOf(\PDO::class, $this->core->getDatabase());
|
|
}
|
|
|
|
public function testUser():void{
|
|
$this->assertEquals($this->user, $this->core->getUser());
|
|
}
|
|
|
|
public function testSession():void{
|
|
$this->assertEquals($this->core->getUser()->getPasswordHash(), $_SESSION['user']['hash']);
|
|
}
|
|
}
|
|
|