Ejemplo n.º 1
0
 /**
  * @dataProvider getXsdLocationProvider
  * 
  * @param string $file
  * @param string $namespaceUri
  * @param boolean|string $expectedLocation
  */
 public function testGetXsdLocation($file, $namespaceUri, $expectedLocation)
 {
     $document = new DOMDocument('1.0', 'UTF-8');
     $document->load($file);
     $location = Utils::getXsdLocation($document, $namespaceUri);
     $this->assertSame($expectedLocation, $location);
 }