assertInstanceOf('Composer\Util\SPDXLicenseIdentifier', $identifier); } /** * @dataProvider provideInvalidLicenses * @expectedException InvalidArgumentException * @param string|array $invalidLicense */ public function testInvalidLicenses($invalidLicense) { $identifier = new SPDXLicenseIdentifier($invalidLicense); } public function testGetLicense() { $license = new SPDXLicenseIdentifier('NONE'); $string = $license->getLicense(); $this->assertInternalType('string', $string); $string = (string)$license; $this->assertInternalType('string', $string); } }