public function testIsolated()
 {
     $scriptLabel = new ScriptLabel();
     $this->assertNull($scriptLabel->getIsolated());
     $this->assertSame($scriptLabel, $scriptLabel->setIsolated(true));
     $this->assertTrue($scriptLabel->getIsolated());
 }