Package org.xmpp.packet

Examples of org.xmpp.packet.Message.toXML()


        // no matches should be found
        assertFalse(matched);

        // message should not have changed
        assertEquals(new Message().toXML(), message.toXML());
    }

    public void testFilterMessageSubject() {
        // filter on the word fox
        filter.setPatterns("fox");
View Full Code Here


       
        String expectedXML = chatXML.replaceAll("fox", filter.getMask());
        // do filter
        boolean matched = filter.filter(m);       
        assertTrue(matched);
        assertEquals(expectedXML, expectedXML, m.toXML());
       
    }
   
    public void testFilterAvailablePresence() throws Exception {
       
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.