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