Added Text source

This commit is contained in:
Kevin Frantz
2018-11-23 21:30:25 +01:00
parent 0ca2838ae2
commit 4066634af2
7 changed files with 129 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace Tests\Unit\Entity\Source\Primitive\Text;
use PHPUnit\Framework\TestCase;
use App\Entity\Source\Primitive\Text\TextSourceInterface;
use App\Entity\Source\Primitive\Text\TextSource;
class TextSourceTest extends TestCase
{
/**
* @var TextSourceInterface
*/
protected $textSource;
public function setUp(): void
{
$this->textSource = new TextSource();
}
public function testConstructor(): void
{
$this->expectException(\TypeError::class);
$this->textSource->getText();
}
}