Neos\Flow\Tests\Unit\Mvc\Routing\RouterCachingServiceTest::storeMatchResultsDoesNotStoreMatchResultsInCacheIfTheyContainObjects PHP Méthode

storeMatchResultsDoesNotStoreMatchResultsInCacheIfTheyContainObjects() public méthode

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