Implemented ActionType

This commit is contained in:
Kevin Frantz
2019-01-19 21:44:10 +01:00
parent 4a40f78e7d
commit 71c7a7f080
3 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace tests\Unit\DBAL\Types;
use PHPUnit\Framework\TestCase;
use App\DBAL\Types\ActionType;
/**
* @author kevinfrantz
*/
class ActionTypeTest extends TestCase
{
public function testAmountOfActions(): void
{
$this->assertEquals(5, count(ActionType::getChoices()));
}
}