Skip to content

Commit a0273ed

Browse files
committed
Added missing test class
1 parent cd1315d commit a0273ed

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
declare(strict_types = 1);
3+
/**
4+
* /tests/Integration/Doctrine/DBAL/Types/PrimaryStringTypeTest.php
5+
*
6+
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
7+
*/
8+
9+
namespace App\Tests\Integration\Doctrine\DBAL\Types;
10+
11+
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
12+
13+
/**
14+
* @package App\Tests\Integration\Doctrine\DBAL\Types
15+
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
16+
*/
17+
class PrimaryStringTypeTest extends KernelTestCase
18+
{
19+
public function testThatSomething(): void
20+
{
21+
static::markTestSkipped('This test is not yet implemented');
22+
}
23+
}

0 commit comments

Comments
 (0)