mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Implemented ActionType
This commit is contained in:
17
application/symfony/tests/Unit/DBAL/Types/ActionTypeTest.php
Normal file
17
application/symfony/tests/Unit/DBAL/Types/ActionTypeTest.php
Normal 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()));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user