28 {
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");
35
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());
41 }