public function testGetTripleCountWithNonExistentSubject()
 {
     $graph = new ExtendedGraph();
     $expected = 0;
     $actual = $graph->get_triple_count('http://example.com/subject');
     $this->assertEquals($expected, $actual);
 }