public function testGetLicensingInfoMissing()
 {
     $content = '<root xmlns:pkp="http://pkp.sfu.ca/SWORD"></root>';
     $xml = new SimpleXMLElement($content);
     $deposit = new Deposit();
     $this->builder->getLicensingInfo($deposit, $xml);
     $license = $deposit->getLicense();
     $expected = array();
     $this->assertEquals($expected, $license);
 }