-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFunctionalTest.php
38 lines (31 loc) · 1.1 KB
/
FunctionalTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
declare(strict_types=1);
namespace Tiime\TestedRoutesCheckerBundle\Tests;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\Container;
use Tiime\TestedRoutesCheckerBundle\Command\CheckCommand;
final class FunctionalTest extends TestCase
{
public function testBundleInit(): void
{
$kernel = new TestKernel([
'framework' => [
'http_method_override' => false,
'handle_all_throwables' => true,
'php_errors' => [
'log' => true,
],
'router' => [
'resource' => '',
],
],
]);
$kernel->boot();
$container = $kernel->getContainer();
$this->assertInstanceOf(Container::class, $container);
$removedServices = array_keys($container->getRemovedIds());
$this->assertTrue(\in_array('tiime_tested_routes_checker_bundle.command.check', $removedServices));
$command = $container->get(CheckCommand::class);
$this->assertInstanceOf(CheckCommand::class, $command);
}
}