Solved bugs to allow unit tests to run

This commit is contained in:
Kevin Frantz
2018-11-15 19:55:03 +01:00
parent 647bc81965
commit de66375ee0
9 changed files with 61 additions and 42 deletions

View File

@@ -4,7 +4,7 @@ namespace Tests\Unit\Entity\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\PersonIdentitySourceAttributInterface;
use Entity\Attribut\PersonIdentityAttribut;
use App\Entity\Attribut\PersonIdentitySourceAttribut;
use App\Entity\Source\Data\PersonIdentitySourceInterface;
/**
@@ -22,7 +22,7 @@ class PersonIdentitySourceAttributTest extends TestCase
public function setUp(): void
{
$this->identity = new class() implements PersonIdentitySourceAttributInterface {
use PersonIdentityAttribut;
use PersonIdentitySourceAttribut;
};
}