Neos\Flow\Tests\Unit\Http\Component\ComponentChainTest::handleReturnsIfNoComponentsAreConfigured PHP Method

handleReturnsIfNoComponentsAreConfigured() public method

    public function handleReturnsIfNoComponentsAreConfigured()
    {
        $options = [];
        $this->componentChain = new Http\Component\ComponentChain($options);
        $this->componentChain->handle($this->mockComponentContext);
        // dummy assertion to silence PHPUnit warning
        $this->assertTrue(true);
    }