public function testIsEmptyAfterDelete()
 {
     $graph = new EasyRdf_Graph();
     $graph->add('http://example.com/', 'rdfs:label', 'Example');
     $graph->delete('http://example.com/', 'rdfs:label');
     $this->assertTrue($graph->isEmpty());
 }