ImboUnitTest\EventListener\MetadataCacheTest::testDoesNotStoreDataInCacheWhenResponseCodeIsNot200 PHP Method

testDoesNotStoreDataInCacheWhenResponseCodeIsNot200() public method

    public function testDoesNotStoreDataInCacheWhenResponseCodeIsNot200()
    {
        $this->cache->expects($this->never())->method('set');
        $this->response->expects($this->once())->method('getStatusCode')->will($this->returnValue(404));
        $this->listener->storeInCache($this->event);
    }