[Plexus-svn] SF.net SVN: plexus:[883] trunk/plexus-graph/src/test/java/com/phoenixst/ plexus
Status: Alpha
Brought to you by:
rconner
From: <rc...@us...> - 2010-09-15 16:09:24
|
Revision: 883 http://plexus.svn.sourceforge.net/plexus/?rev=883&view=rev Author: rconner Date: 2010-09-15 16:09:13 +0000 (Wed, 15 Sep 2010) Log Message: ----------- beginning to refactor test code, breaking the build Removed Paths: ------------- trunk/plexus-graph/src/test/java/com/phoenixst/plexus/AllTests.java trunk/plexus-graph/src/test/java/com/phoenixst/plexus/examples/AllTests.java trunk/plexus-graph/src/test/java/com/phoenixst/plexus/util/AllTests.java Deleted: trunk/plexus-graph/src/test/java/com/phoenixst/plexus/AllTests.java =================================================================== --- trunk/plexus-graph/src/test/java/com/phoenixst/plexus/AllTests.java 2010-09-15 16:07:22 UTC (rev 882) +++ trunk/plexus-graph/src/test/java/com/phoenixst/plexus/AllTests.java 2010-09-15 16:09:13 UTC (rev 883) @@ -1,49 +0,0 @@ -/* - * $Id$ - * - * Copyright (C) 1994-2005 by Phoenix Software Technologists, - * Inc. and others. All rights reserved. - * - * THIS PROGRAM AND DOCUMENTATION IS PROVIDED UNDER THE TERMS OF THE - * COMMON PUBLIC LICENSE ("AGREEMENT") WHICH ACCOMPANIES IT. ANY - * USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES - * RECIPIENT'S ACCEPTANCE OF THE AGREEMENT. - * - * The license text can also be found at - * http://opensource.org/licenses/cpl.php - */ - -package com.phoenixst.plexus; - -import junit.framework.Test; -import junit.framework.TestSuite; - - -/** - * Test suite for all tests in this package. - * - * @author Ray A. Conner - */ -public class AllTests -{ - - private AllTests() - { - super(); - } - - public static Test suite() - { - TestSuite suite = new TestSuite( "Graph Tests" ); - suite.addTest( com.phoenixst.plexus.examples.AllTests.suite() ); - suite.addTest( com.phoenixst.plexus.util.AllTests.suite() ); - suite.addTest( DefaultGraphTest.suite() ); - return suite; - } - - public static void main( String[] args ) - { - junit.textui.TestRunner.run( suite() ); - } - -} Deleted: trunk/plexus-graph/src/test/java/com/phoenixst/plexus/examples/AllTests.java =================================================================== --- trunk/plexus-graph/src/test/java/com/phoenixst/plexus/examples/AllTests.java 2010-09-15 16:07:22 UTC (rev 882) +++ trunk/plexus-graph/src/test/java/com/phoenixst/plexus/examples/AllTests.java 2010-09-15 16:09:13 UTC (rev 883) @@ -1,64 +0,0 @@ -/* - * $Id$ - * - * Copyright (C) 1994-2005 by Phoenix Software Technologists, - * Inc. and others. All rights reserved. - * - * THIS PROGRAM AND DOCUMENTATION IS PROVIDED UNDER THE TERMS OF THE - * COMMON PUBLIC LICENSE ("AGREEMENT") WHICH ACCOMPANIES IT. ANY - * USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES - * RECIPIENT'S ACCEPTANCE OF THE AGREEMENT. - * - * The license text can also be found at - * http://opensource.org/licenses/cpl.php - */ - -package com.phoenixst.plexus.examples; - -import junit.framework.*; - - -/** - * Test suite for all tests in this package. - * - * @author Ray A. Conner - */ -public class AllTests -{ - - private AllTests() - { - super(); - } - - public static Test suite() - { - TestSuite suite = new TestSuite( "Graph Example Tests" ); - - suite.addTest( EmptyGraphTest.suite() ); - suite.addTest( CompleteGraphTest.suite() ); - suite.addTest( PathTest.suite() ); - suite.addTest( CycleTest.suite() ); - suite.addTest( CompleteTreeTest.suite() ); - - suite.addTest( CompleteBipartiteGraphTest.suite() ); - suite.addTest( StarTest.suite() ); - suite.addTest( WheelTest.suite() ); - - suite.addTest( PlanarMeshTest.suite() ); - suite.addTest( PrismTest.suite() ); - suite.addTest( ToroidalMeshTest.suite() ); - - suite.addTest( PetersenGraphTest.suite() ); - - suite.addTest( DefaultGraphExamplesTest.suite() ); - - return suite; - } - - public static void main( String[] args ) - { - junit.textui.TestRunner.run( suite() ); - } - -} Deleted: trunk/plexus-graph/src/test/java/com/phoenixst/plexus/util/AllTests.java =================================================================== --- trunk/plexus-graph/src/test/java/com/phoenixst/plexus/util/AllTests.java 2010-09-15 16:07:22 UTC (rev 882) +++ trunk/plexus-graph/src/test/java/com/phoenixst/plexus/util/AllTests.java 2010-09-15 16:09:13 UTC (rev 883) @@ -1,48 +0,0 @@ -/* - * $Id$ - * - * Copyright (C) 1994-2005 by Phoenix Software Technologists, - * Inc. and others. All rights reserved. - * - * THIS PROGRAM AND DOCUMENTATION IS PROVIDED UNDER THE TERMS OF THE - * COMMON PUBLIC LICENSE ("AGREEMENT") WHICH ACCOMPANIES IT. ANY - * USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES - * RECIPIENT'S ACCEPTANCE OF THE AGREEMENT. - * - * The license text can also be found at - * http://opensource.org/licenses/cpl.php - */ - -package com.phoenixst.plexus.util; - -import junit.framework.*; - - -/** - * Test suite for all tests in this package. - * - * @author Ray A. Conner - */ -public class AllTests -{ - - private AllTests() - { - super(); - } - - public static Test suite() - { - TestSuite suite = new TestSuite( "Graph Util Tests" ); - - suite.addTest( SingletonGraphTest.suite() ); - - return suite; - } - - public static void main( String[] args ) - { - junit.textui.TestRunner.run( suite() ); - } - -} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |