Added FormClassNameService

This commit is contained in:
Kevin Frantz
2019-01-26 20:22:17 +01:00
parent a94639b992
commit 1d8a0f0b19
3 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace tests\Unit\Domain\FormManagement;
use PHPUnit\Framework\TestCase;
use App\Domain\FormManagement\FormClassNameService;
use App\Entity\Source\PureSource;
/**
* @author kevinfrantz
*/
class FormClassNameServiceTest extends TestCase
{
public function testGetName()
{
$entity = new PureSource();
$formNameService = new FormClassNameService();
$entityForm = $formNameService->getName($entity);
$this->assertEquals('App\\Form\\Source\\PureSourceType', $entityForm);
}
}