26 {
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");
33
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());
39 }