/*
* Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
* Distributed under the terms of either:
* - the common development and distribution license (CDDL), v1.0; or
* - the GNU Lesser General Public License, v2.1 or later
* $Id: TestRifeContinuationsTests.java 3819 2007-06-28 13:13:23Z gbevin $
*/
package com.uwyn.rife;
import java.util.logging.Level;
import java.util.logging.Logger;
import junit.framework.Test;
import junit.framework.TestSuite;
public class TestRifeContinuationsTests extends TestSuite
{
public static Test suite()
{
TestSuite suite = new TestSuite("Uwyn RIFE/Continuations tests");
Logger.getLogger("com.uwyn.rife").setLevel(Level.WARNING);
suite.addTest(com.uwyn.rife.continuations.TestSuiteContinuations.suite());
return suite;
}
}
|