Source Code Cross Referenced for JavaTestSuite.java in  » Parser » JTopas » de » susebox » java » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Parser » JTopas » de.susebox.java 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * JavaTestSuite.java: JUnit test for the java package and its subpackages
003:         *
004:         * Copyright (C) 2001 Heiko Blau
005:         *
006:         * This file belongs to the Susebox Java core test suite.
007:         * The Susebox Java core test suite is free software; you can redistribute it 
008:         * and/or modify it under the terms of the GNU Lesser General Public License as 
009:         * published by the Free Software Foundation; either version 2.1 of the License, 
010:         * or (at your option) any later version.
011:         *
012:         * This software is distributed in the hope that it will be useful, but WITHOUT
013:         * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
014:         * FITNESS FOR A PARTICULAR PURPOSE. 
015:         * See the GNU Lesser General Public License for more details.
016:         *
017:         * You should have received a copy of the GNU Lesser General Public License along 
018:         * with the Susebox Java core test suite. If not, write to the
019:         *
020:         *   Free Software Foundation, Inc.
021:         *   59 Temple Place, Suite 330, 
022:         *   Boston, MA 02111-1307 
023:         *   USA
024:         *
025:         * or check the Internet: http://www.fsf.org
026:         *
027:         * The Susebox Java core test suite uses the test framework JUnit by Kent Beck 
028:         * and Erich Gamma. You should have received a copy of their JUnit licence 
029:         * agreement along with the Susebox Java test suite.
030:         *
031:         * We do NOT provide the JUnit archive junit.jar nessecary to compile and run 
032:         * our tests, since we assume, that You  either have it already or would like 
033:         * to get the current release Yourself. 
034:         * Please visit either:
035:         *   http://sourceforge.net/projects/junit
036:         * or
037:         *   http://junit.org
038:         * to obtain JUnit.
039:         *
040:         * Contact:
041:         *   email: heiko@susebox.de 
042:         */
043:
044:        package de.susebox.java;
045:
046:        //-----------------------------------------------------------------------------
047:        // Imports
048:        //
049:        import junit.framework.Test;
050:        import junit.framework.TestCase;
051:        import junit.framework.TestSuite;
052:
053:        import de.susebox.java.lang.LangTestSuite;
054:        import de.susebox.java.util.UtilTestSuite;
055:
056:        import de.susebox.TestUtilities;
057:
058:        //-----------------------------------------------------------------------------
059:        // Class JavaTestSuite
060:        //
061:
062:        /**<p>
063:         * This is the test suite for the java package tree. It composes all test classes
064:         * in the java subpackages to a single test suite.
065:         *</p>
066:         *
067:         * @author  Heiko Blau
068:         */
069:        public class JavaTestSuite extends TestCase {
070:
071:            //---------------------------------------------------------------------------
072:            // main method
073:            //
074:
075:            /**
076:             * call this method to invoke the tests
077:             */
078:            public static void main(String[] args) {
079:                String[] tests = { JavaTestSuite.class.getName() };
080:
081:                TestUtilities.run(tests, args);
082:            }
083:
084:            //---------------------------------------------------------------------------
085:            // suite method
086:            //
087:
088:            /**
089:             * Implementation of the JUnit method <code>suite</code>. For each set of test
090:             * properties one or more tests are instantiated.
091:             *
092:             * @return a test suite
093:             */
094:            public static Test suite() {
095:                TestSuite suite = new TestSuite(JavaTestSuite.class.getName());
096:
097:                suite.addTest(LangTestSuite.suite());
098:                suite.addTest(UtilTestSuite.suite());
099:                return suite;
100:            }
101:
102:            //---------------------------------------------------------------------------
103:            // constructor
104:            //
105:
106:            /**
107:             * Constructor
108:             */
109:            public JavaTestSuite(String name) {
110:                super(name);
111:            }
112:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.