You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/test/de/anomic/soap/services/ServiceTests.java

19 lines
427 B

package de.anomic.soap.services;
import junit.framework.Test;
import junit.framework.TestSuite;
public class ServiceTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for de.anomic.soap.services");
//$JUnit-BEGIN$
suite.addTestSuite(ShareServiceTest.class);
suite.addTestSuite(StatusServiceTest.class);
suite.addTestSuite(BlacklistServiceTest.class);
//$JUnit-END$
return suite;
}
}