public void testDeclineMessage() throws Exception {
String reason = "No way";
// add occupants to the room
Room room = conference.findOrCreateRoom(ROOM1_JID, "Room 1");
room.addOccupant(OCCUPANT2_JID, "nick");
Decline decline = new Decline(null, OCCUPANT2_JID, reason);
// send message to occupant 1
Stanza error = sendMessage(OCCUPANT1_JID, ROOM1_JID, null, null, new X(decline), null);
assertNull(error);