Source Code Cross Referenced for AllMeasurements.java in  » Byte-Code » PROSE » measurements » suites » 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 » Byte Code » PROSE » measurements.suites 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        // $Id: AllMeasurements.java,v 1.2 2004/05/12 17:26:52 anicoara Exp $
02:        // =====================================================================
03:        //
04:        // (history at end)
05:        //
06:
07:        package measurements.suites;
08:
09:        // used packages
10:        import junit.framework.*;
11:
12:        /**
13:         * Performance testcases for Runes. Add additional testcase suites in
14:         * the method <code>suitee</code>
15:         *
16:         * @version	$Revision: 1.2 $
17:         * @author	Andrei Popovici
18:         */
19:        public class AllMeasurements extends TestCase {
20:
21:            /**
22:             * Construct test with given name.
23:             * @param name test name
24:             */
25:            public AllMeasurements(String name) {
26:                super (name);
27:            }
28:
29:            /**
30:             * Test suite.
31:             * @return test instance
32:             */
33:            public static Test suite() {
34:                TestSuite testSuite = new TestSuite();
35:                testSuite.addTest(CalibrationMeasurement.suite());
36:                testSuite.addTest(JVMAIMeasurement.suite());
37:                testSuite.addTest(JVMAIInfoMeasurement.suite());
38:                testSuite.addTest(CrosscutMeasurement.suite());
39:                return testSuite;
40:            }
41:
42:        }
43:
44:        //======================================================================
45:        //
46:        // $Log: AllMeasurements.java,v $
47:        // Revision 1.2  2004/05/12 17:26:52  anicoara
48:        // Adapt Junit tests to 3.8.1 version and the new package structure
49:        //
50:        // Revision 1.1.1.1  2003/07/02 15:30:45  apopovic
51:        // Imported from ETH Zurich
52:        //
53:        // Revision 1.10  2003/03/04 18:36:00  popovici
54:        // Organization of imprts
55:        //
56:        // Revision 1.9  2002/09/27 14:17:44  popovici
57:        // Functional Crosscut obsolete
58:        //
59:        // Revision 1.8  2002/05/06 09:08:10  popovici
60:        // all _test now real test cases; JVMAI measurement enhanced with interface testing
61:        //
62:        // Revision 1.7  2002/03/28 09:15:34  popovici
63:        // CrosscutMeasurement not any more in All Measurements
64:        //
65:        // Revision 1.6  2002/03/14 08:46:22  popovici
66:        // Minor adaptations and corrections
67:        //
68:        // Revision 1.5  2002/02/25 15:20:50  smarkwal
69:        // JVMAIInfoMeasurements added
70:        //
71:        // Revision 1.4  2002/02/21 12:57:15  popovici
72:        // CrosscutMeasurements replaces AllLocatgionsMeasurement and is more comprehensive
73:        //
74:        // Revision 1.3  2002/02/15 12:31:09  smarkwal
75:        // minor changes like spaces/tabs, setUp
76:        //
77:        // Revision 1.2  2002/02/05 11:22:38  smarkwal
78:        // modifications to test JVMAI-based implementation
79:        //
80:        // Revision 1.1.1.1  2001/11/29 18:13:34  popovici
81:        // Sources from runes
82:        //
83:        // Revision 1.1.2.2  2001/01/22 07:20:04  popovici
84:        // AllLocationMeasurements, FunctionalCrosscut and JVMDI Measurements added
85:        //
86:        // Revision 1.1.2.1  2000/12/13 15:29:05  popovici
87:        // Initial Revision
88:        //
89:        //
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.