fkooman\RemoteStorage\RemoteStorageServiceTest::testGetNonExistingFolder PHP Method

testGetNonExistingFolder() public method

    public function testGetNonExistingFolder()
    {
        $request = $this->getGetRequest('/admin/foo/bar/');
        $response = $this->r->run($request);
        $this->assertSame(array('HTTP/1.1 200 OK', 'Content-Type: application/ld+json', 'Etag: "e:404"', 'Content-Length: 77', 'Expires: 0', 'Cache-Control: no-cache', 'Access-Control-Allow-Origin: *', 'Access-Control-Expose-Headers: ETag, Content-Length', '', '{"@context":"http:\\/\\/remotestorage.io\\/spec\\/folder-description","items":{}}'), $response->toArray());
    }