/*
* 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: TestRifeContinuations.java 3785 2007-06-11 18:11:07Z gbevin $
*/
package com.uwyn.rife;
import junit.textui.TestRunner;
public class TestRifeContinuations
{
public static void main(String[] args)
{
TestRunner.run(TestRifeContinuationsTests.suite());
}
}
|