TestRifeContinuationsTests.java :  » Web-Framework » rife-1.6.1 » com » uwyn » rife » Java Open Source

Java Open Source » Web Framework » rife 1.6.1 
rife 1.6.1 » com » uwyn » rife » TestRifeContinuationsTests.java
/*
 * 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;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.