예제 #1
0
 /**
  * @expectedException \RuntimeException
  */
 public function testGetThirdPartyLibraryPathsError()
 {
     // Overwrite third party libs XML with a broken one.
     $fs = new Filesystem();
     $fs->copy(__DIR__ . '/../Fixture/broken-thirdpartylibs.xml', $this->pluginDir . '/thirdpartylibs.xml', true);
     $plugin = new MoodlePlugin($this->pluginDir);
     $plugin->getThirdPartyLibraryPaths();
 }