01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: TestRifeContinuationsTests.java 3819 2007-06-28 13:13:23Z gbevin $
07: */
08: package com.uwyn.rife;
09:
10: import java.util.logging.Level;
11: import java.util.logging.Logger;
12: import junit.framework.Test;
13: import junit.framework.TestSuite;
14:
15: public class TestRifeContinuationsTests extends TestSuite {
16: public static Test suite() {
17: TestSuite suite = new TestSuite("Uwyn RIFE/Continuations tests");
18:
19: Logger.getLogger("com.uwyn.rife").setLevel(Level.WARNING);
20:
21: suite
22: .addTest(com.uwyn.rife.continuations.TestSuiteContinuations
23: .suite());
24:
25: return suite;
26: }
27: }
|