diff --git a/tests/integration/BasicKernelTest.php b/tests/integration/BasicKernelTest.php new file mode 100644 index 00000000..272732c8 --- /dev/null +++ b/tests/integration/BasicKernelTest.php @@ -0,0 +1,38 @@ +getIbexaTestCore()->getServiceByClassName(Repository::class); + $this->getIbexaTestCore()->getServiceByClassName(RestRootController::class); + $this->expectNotToPerformAssertions(); + } + + public function testRouterIsAvailable(): void + { + $router = self::getContainer()->get('router'); + $router->match('/api/ibexa/v2/'); + $this->expectNotToPerformAssertions(); + } +}