Skip to content

Commit f5ba5ce

Browse files
authored
Create ComponentWebTestCase.php
1 parent 2157e73 commit f5ba5ce

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tests/src/ComponentWebTestCase.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony-Util package.
5+
*
6+
* (c) Jean-Bernard Addor
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
13+
14+
class ComponentWebTestCase extends WebTestCase
15+
{
16+
protected static function getKernelClass()
17+
{
18+
return ComponentKernel::class;
19+
}
20+
}

0 commit comments

Comments
 (0)