3 include_once(
"./Services/Style/System/classes/Utilities/class.ilSkinStyleXML.php");
19 $this->assertEquals(
"style1", $this->style1->getId());
20 $this->assertEquals(
"Style 1", $this->style1->getName());
25 $this->style1->setId(
"id");
26 $this->style1->setName(
"name");
27 $this->style1->setCssFile(
"css");
28 $this->style1->setImageDirectory(
"image");
29 $this->style1->setSoundDirectory(
"sound");
31 $this->assertEquals(
"id", $this->style1->getId());
32 $this->assertEquals(
"name", $this->style1->getName());
33 $this->assertEquals(
"css", $this->style1->getCssFile());
34 $this->assertEquals(
"image", $this->style1->getImageDirectory());
35 $this->assertEquals(
"sound", $this->style1->getSoundDirectory());