mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 09:45:59 +01:00
22 lines
1.1 KiB
Java
22 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
|
||
|
}
|