Chris@14: loadXML(''); Chris@14: $this->license = new LicenseElement($dom->documentElement); Chris@14: } Chris@14: Chris@14: public function testTypeCanBeRetrieved() { Chris@14: $this->assertEquals('BSD-3', $this->license->getType()); Chris@14: } Chris@14: Chris@14: public function testUrlCanBeRetrieved() { Chris@14: $this->assertEquals('https://some.tld/LICENSE', $this->license->getUrl()); Chris@14: } Chris@14: Chris@14: }