public function testSetLicense()
 {
     $this->assertEmpty($this->moduleOptions->getLicense());
     $this->moduleOptions->setLicense('foo');
     $this->assertEquals('foo', $this->moduleOptions->getLicense());
 }