createMock(originalClassName: QuotesRepository::class); // Set up the controller and invoke the quote action $controller = new FrontendController(); $response = $controller->quote(quotesRepository: $quotesRepository); // Check the response of the action $this->assertInstanceOf(expected: Response::class, actual: $response); $this->assertStringContainsString(needle: '@default/base.html.twig', haystack: $response->getContent()); */ $this->assertTrue(condition: true); } }