Source Code Cross Referenced for T_MultiIterations.java in  » Database-DBMS » db-derby-10.2 » org » apache » derbyTesting » unitTests » harness » 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 » Database DBMS » db derby 10.2 » org.apache.derbyTesting.unitTests.harness 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:
003:           Derby - Class org.apache.derbyTesting.unitTests.harness.T_MultiIterations
004:
005:           Licensed to the Apache Software Foundation (ASF) under one or more
006:           contributor license agreements.  See the NOTICE file distributed with
007:           this work for additional information regarding copyright ownership.
008:           The ASF licenses this file to You under the Apache License, Version 2.0
009:           (the "License"); you may not use this file except in compliance with
010:           the License.  You may obtain a copy of the License at
011:
012:              http://www.apache.org/licenses/LICENSE-2.0
013:
014:           Unless required by applicable law or agreed to in writing, software
015:           distributed under the License is distributed on an "AS IS" BASIS,
016:           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017:           See the License for the specific language governing permissions and
018:           limitations under the License.
019:
020:         */
021:
022:        package org.apache.derbyTesting.unitTests.harness;
023:
024:        import org.apache.derby.iapi.services.monitor.Monitor;
025:        import org.apache.derby.iapi.services.property.PropertyUtil;
026:
027:        import java.util.Properties;
028:
029:        /**
030:         Abstract class which executes T_Generic. This splits the running
031:         of a test into two parts, the test setup and running the test.
032:         This allows the setup to be performed once, and then the
033:         test itself to be run for a number of iterations. The number
034:         iterations is set by the property derby.unittests.iterations
035:         and defaults to 1.
036:         <P>
037:         Statistics are provided about each iteration in the error log. The statistics
038:         are time for each iteration, used and total memory changes per iteration.
039:
040:         @see T_Generic
041:         */
042:        public abstract class T_MultiIterations extends T_Generic {
043:            protected T_MultiIterations() {
044:                super ();
045:            }
046:
047:            /*
048:             ** methods required by T_Generic
049:             */
050:
051:            /**
052:              Run the test. The test should raise an exception if it
053:              fails. runTests should return if the tests pass.
054:
055:              @exception T_Fail Test code throws these
056:             */
057:            protected void runTests() throws T_Fail {
058:
059:                setupTest();
060:
061:                int iterations = 1;
062:
063:                /*
064:                 ** The property name for the number of iterations is
065:                 ** derby.className.iterations.  For example, if the test
066:                 ** class is derby.com.package.to.test.T_Tester,
067:                 ** the property name is derby.T_Tester.iterations.
068:                 */
069:                String myClass = this .getClass().getName();
070:                String noPackage = myClass
071:                        .substring(myClass.lastIndexOf('.') + 1);
072:                String propertyName = "derby." + noPackage + ".iterations";
073:
074:                String iter = PropertyUtil.getSystemProperty(propertyName);
075:                if (iter != null) {
076:                    try {
077:                        iterations = Integer.parseInt(iter);
078:                    } catch (NumberFormatException nfe) {
079:                        // leave at one
080:                    }
081:                    if (iterations <= 0)
082:                        iterations = 1;
083:                }
084:
085:                for (int i = 0; i < iterations; i++) {
086:                    Runtime.getRuntime().gc();
087:                    long btm = Runtime.getRuntime().totalMemory();
088:                    long bfm = Runtime.getRuntime().freeMemory();
089:                    long bum = btm - bfm;
090:
091:                    long start = System.currentTimeMillis();
092:
093:                    runTestSet();
094:
095:                    long end = System.currentTimeMillis();
096:
097:                    Runtime.getRuntime().gc();
098:                    long atm = Runtime.getRuntime().totalMemory();
099:                    long afm = Runtime.getRuntime().freeMemory();
100:                    long aum = atm - afm;
101:
102:                    out.println("Iteration " + i + " took " + (end - start)
103:                            + "ms");
104:                    out.println("Total memory increased by " + (atm - btm)
105:                            + " is " + atm);
106:                    out.println("Used  memory increased by " + (aum - bum)
107:                            + " is " + aum);
108:                }
109:            }
110:
111:            /*
112:             **	  Abstract methods to implement for your test.
113:             */
114:
115:            /**
116:            	Run once to set up the test.
117:
118:                @exception T_Fail Test code throws these
119:             */
120:            protected abstract void setupTest() throws T_Fail;
121:
122:            /**
123:            	Run once per-iteration to run the actual test.
124:
125:                @exception T_Fail Test code throws these
126:             */
127:            protected abstract void runTestSet() throws T_Fail;
128:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.