mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
f7a1c750ad
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11346 b35dd754-fafc-0310-a699-88a17e54d16e
22 lines
429 B
Java
22 lines
429 B
Java
/*
|
|
* Created on 2009-04-09
|
|
*/
|
|
package org.jivesoftware.smackx.pubsub;
|
|
|
|
import org.jivesoftware.smack.XMPPException;
|
|
import org.jivesoftware.smackx.pubsub.test.SingleUserTestCase;
|
|
|
|
public class TestAPI extends SingleUserTestCase
|
|
{
|
|
public void testGetNonexistentNode()
|
|
{
|
|
try
|
|
{
|
|
getManager().getNode("" + System.currentTimeMillis());
|
|
assertTrue(false);
|
|
}
|
|
catch (XMPPException e)
|
|
{
|
|
}
|
|
}
|
|
}
|