Example #1
0
 /**
  * @depends testConstructorWithConfig
  */
 public function testGuessVocabularyFromURIThatIsNotFound()
 {
     $model = new Model(new GlobalConfig('/../tests/testconfig.inc'));
     $vocab = $model->guessVocabularyFromURI('http://doesnot/exist');
     $this->assertEquals(null, $vocab);
 }