[larm-cvs] larm/src/test/larm AllTests.java,1.1,1.2
Brought to you by:
cmarschner,
otis
|
From: <ot...@us...> - 2003-07-29 15:11:44
|
Update of /cvsroot/larm/larm/src/test/larm
In directory sc8-pr-cvs1:/tmp/cvs-serv23925/src/test/larm
Modified Files:
AllTests.java
Log Message:
- Big bad update, reorganization, etc.
Index: AllTests.java
===================================================================
RCS file: /cvsroot/larm/larm/src/test/larm/AllTests.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AllTests.java 24 Jun 2003 17:19:02 -0000 1.1
--- AllTests.java 29 Jul 2003 15:11:41 -0000 1.2
***************
*** 1,35 ****
! /*
! * Created on 23.06.2003
! *
! */
!
! package larm;
!
! import junit.framework.Test;
! import junit.framework.TestSuite;
! import larm.config.ConfigurationTest;
! import larm.pipes.PipelineTest;
!
! /**
! * @author cmarschner
! *
! * contains all tests
! */
! public class AllTests
! {
!
! public static void main(String[] args)
! {
! junit.swingui.TestRunner.run(AllTests.class);
! }
!
! public static Test suite()
! {
! TestSuite suite = new TestSuite("Test for larm");
! //$JUnit-BEGIN$
! suite.addTestSuite(ConfigurationTest.class);
! suite.addTestSuite(PipelineTest.class);
! //$JUnit-END$
! return suite;
! }
! }
--- 1,31 ----
! package larm;
!
! import junit.framework.Test;
! import junit.framework.TestSuite;
! import larm.config.ConfigurationTest;
! import larm.pipes.PipelineTest;
!
! /**
! * Contains all tests.
! *
! * @author
! * @version $Id$
! */
! public class AllTests
! {
!
! public static void main(String[] args)
! {
! junit.swingui.TestRunner.run(AllTests.class);
! }
!
! public static Test suite()
! {
! TestSuite suite = new TestSuite("Test for larm");
! //$JUnit-BEGIN$
! suite.addTestSuite(ConfigurationTest.class);
! suite.addTestSuite(PipelineTest.class);
! //$JUnit-END$
! return suite;
! }
! }
|