mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-07-31 00:15:48 -04:00
21 lines
379 B
Java
21 lines
379 B
Java
package main;
|
|
|
|
import network.encryption.TestEncryption;
|
|
import network.encryption.TestFragmented;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
import resources.TestResources;
|
|
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses({
|
|
TestEncryption.class,
|
|
TestFragmented.class,
|
|
TestResources.class
|
|
})
|
|
public class TestAll {
|
|
|
|
}
|