23 {
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");
30
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());
36 }