/**
  * @covers ilRoomSharingRoom::setAttributes
  */
 public function testSetAttributes()
 {
     $attributes = array(array(1), array(2), array(3));
     self::$room->setAttributes($attributes);
     $this->assertEquals($attributes, self::$room->getAttributes());
 }