mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 09:45:59 +01:00
8b54f34153
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11821 b35dd754-fafc-0310-a699-88a17e54d16e
21 lines
1.1 KiB
Java
21 lines
1.1 KiB
Java
package org.jivesoftware.smackx.bytestreams.ibb;
|
|
|
|
import org.jivesoftware.smackx.bytestreams.ibb.packet.CloseTest;
|
|
import org.jivesoftware.smackx.bytestreams.ibb.packet.DataPacketExtensionTest;
|
|
import org.jivesoftware.smackx.bytestreams.ibb.packet.DataTest;
|
|
import org.jivesoftware.smackx.bytestreams.ibb.packet.OpenTest;
|
|
import org.jivesoftware.smackx.bytestreams.ibb.provider.OpenIQProviderTest;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
|
|
@RunWith(Suite.class)
|
|
@Suite.SuiteClasses( { CloseTest.class, DataPacketExtensionTest.class, DataTest.class,
|
|
OpenTest.class, OpenIQProviderTest.class, CloseListenerTest.class,
|
|
DataListenerTest.class, InBandBytestreamManagerTest.class,
|
|
InBandBytestreamRequestTest.class,
|
|
InBandBytestreamSessionMessageTest.class,
|
|
InBandBytestreamSessionTest.class, InitiationListenerTest.class })
|
|
public class IBBTestsSuite {
|
|
// the class remains completely empty,
|
|
// being used only as a holder for the above annotations
|
|
}
|