Neos\Flow\Tests\Unit\Mvc\Routing\RouterCachingServiceTest::storeMatchResultsDoesNotStoreMatchResultsInCacheIfTheyContainObjects PHP Method

storeMatchResultsDoesNotStoreMatchResultsInCacheIfTheyContainObjects() public method

    public function storeMatchResultsDoesNotStoreMatchResultsInCacheIfTheyContainObjects()
    {
        $matchResults = ['this' => ['contains' => ['objects', new \stdClass()]]];
        $this->mockRouteCache->expects($this->never())->method('set');
        $this->routerCachingService->storeMatchResults($this->mockHttpRequest, $matchResults);
    }