Ejemplo n.º 1
0
 public function testInsertIntoDefault()
 {
     $data = "<urn:subject> <urn:predicate> \"object\" .\n";
     $this->client->addMock('POST', '/data/?default', 'OK', array('callback' => array($this, 'checkNtriplesRequest')));
     $response = $this->graphStore->insertIntoDefault($data);
     $this->assertSame(200, $response->getStatus());
 }