1 package jgroup.junit;
2
3 import groovy.util.GroovyTestSuite;
4 import junit.framework.Test;
5 import junit.framework.TestSuite;
6
7 public class AllExperimentTests
8 {
9
10 private static final String TEST_ROOT = "jgroup-experiment/src/test/groovy/";
11
12 public static Test suite()
13 throws Exception
14 {
15 TestSuite suite = new TestSuite("Test for jgroup.junit");
16 GroovyTestSuite gsuite = new GroovyTestSuite();
17
18 suite.addTestSuite(gsuite.compile(TEST_ROOT + "jgroup/groovy/experiment/PartitionDataTest.groovy"));
19 suite.addTestSuite(gsuite.compile(TEST_ROOT + "jgroup/relacs/config/DomainSetTest.groovy"));
20
21
22 return suite;
23 }
24
25 }