3 include_once(
"./Services/Style/System/classes/Utilities/class.ilSkinStyleXML.php");
23 $this->assertEquals(
"style1", $this->style1->getId());
24 $this->assertEquals(
"Style 1", $this->style1->getName());
30 $this->style1->setId(
"id");
31 $this->style1->setName(
"name");
32 $this->style1->setCssFile(
"css");
33 $this->style1->setImageDirectory(
"image");
34 $this->style1->setSoundDirectory(
"sound");
36 $this->assertEquals(
"id", $this->style1->getId());
37 $this->assertEquals(
"name", $this->style1->getName());
38 $this->assertEquals(
"css", $this->style1->getCssFile());
39 $this->assertEquals(
"image", $this->style1->getImageDirectory());
40 $this->assertEquals(
"sound", $this->style1->getSoundDirectory());