Java Doc for BasicPerformanceTest.java in  » IDE-Eclipse » ui » org » eclipse » ui » tests » performance » 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 » IDE Eclipse » ui » org.eclipse.ui.tests.performance 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.eclipse.ui.tests.harness.util.UITestCase
   org.eclipse.ui.tests.performance.BasicPerformanceTest

All known Subclasses:   org.eclipse.ui.tests.performance.OpenClosePerspectiveTest,  org.eclipse.ui.tests.performance.CommandsPerformanceTest,  org.eclipse.ui.tests.performance.ProblemsViewPerformanceTest,  org.eclipse.ui.tests.performance.EditorSwitchTest,  org.eclipse.ui.tests.performance.ObjectContributionsPerformance,  org.eclipse.ui.tests.performance.layout.ComputeSizeTest,  org.eclipse.ui.tests.performance.presentations.PresentationPerformanceTest,  org.eclipse.ui.tests.performance.PerspectiveSwitchTest,  org.eclipse.jface.tests.performance.SWTTreeTest,  org.eclipse.ui.tests.performance.GenerateIdentifiersTest,  org.eclipse.jface.tests.performance.ListPopulationTest,  org.eclipse.ui.tests.performance.layout.LayoutTest,  org.eclipse.ui.tests.performance.OpenCloseWindowTest,  org.eclipse.ui.tests.performance.OpenMultipleEditorTest,  org.eclipse.ui.tests.performance.layout.ResizeTest,  org.eclipse.jface.tests.performance.ViewerTest,  org.eclipse.ui.tests.performance.OpenCloseViewTest,  org.eclipse.ui.tests.performance.OpenCloseEditorTest,
BasicPerformanceTest
abstract public class BasicPerformanceTest extends UITestCase (Code)
Baseclass for simple performance tests.
since:
   3.1


Field Summary
final public static  intGLOBAL
    
final public static  intLOCAL
    
final public static  intNONE
    

Constructor Summary
public  BasicPerformanceTest(String testName)
    
public  BasicPerformanceTest(String testName, int tagging)
    

Method Summary
public  voidassertPerformance()
     Asserts default properties of the measurements captured for this test case.
public  voidassertPerformanceInRelativeBand(Dimension dim, int lowerPercentage, int upperPercentage)
     Asserts that the measurement specified by the given dimension is within a certain range with respect to some reference value.
public  voidcommitMeasurements()
    
protected  voiddoSetUp()
    
protected  voiddoTearDown()
    
public static  voidexercise(TestRunnable runnable)
     Runs the given runnable until either 100 iterations or 4s has elapsed.
public static  voidexercise(TestRunnable runnable, int minIterations, int maxIterations, int maxTime)
     Exercises the given runnable until either the given number of iterations or the given amount of time has elapsed, whatever occurs first.
protected  IProjectgetProject()
    
public  voidsetDegradationComment(String string)
     Set the comment for the receiver to string.
public  voidstartMeasuring()
     Called from within a test case immediately before the code to measure is run.
public  voidstopMeasuring()
    
public  voidtagIfNecessary(String shortName, Dimension dimension)
    
public static  voidwaitForBackgroundJobs()
    

Field Detail
GLOBAL
final public static int GLOBAL(Code)



LOCAL
final public static int LOCAL(Code)



NONE
final public static int NONE(Code)




Constructor Detail
BasicPerformanceTest
public BasicPerformanceTest(String testName)(Code)



BasicPerformanceTest
public BasicPerformanceTest(String testName, int tagging)(Code)

Parameters:
  testName -




Method Detail
assertPerformance
public void assertPerformance()(Code)
Asserts default properties of the measurements captured for this test case.
throws:
  RuntimeException - if the properties do not hold



assertPerformanceInRelativeBand
public void assertPerformanceInRelativeBand(Dimension dim, int lowerPercentage, int upperPercentage)(Code)
Asserts that the measurement specified by the given dimension is within a certain range with respect to some reference value. If the specified dimension isn't available, the call has no effect.
Parameters:
  dim - the Dimension to check
Parameters:
  lowerPercentage - a negative number indicating the percentage the measured valueis allowed to be smaller than some reference value
Parameters:
  upperPercentage - a positive number indicating the percentage the measured valueis allowed to be greater than some reference value
throws:
  RuntimeException - if the properties do not hold



commitMeasurements
public void commitMeasurements()(Code)



doSetUp
protected void doSetUp() throws Exception(Code)



doTearDown
protected void doTearDown() throws Exception(Code)



exercise
public static void exercise(TestRunnable runnable) throws CoreException(Code)
Runs the given runnable until either 100 iterations or 4s has elapsed. Runs a minimum of 3 times.
Parameters:
  runnable -
since:
   3.1



exercise
public static void exercise(TestRunnable runnable, int minIterations, int maxIterations, int maxTime) throws CoreException(Code)
Exercises the given runnable until either the given number of iterations or the given amount of time has elapsed, whatever occurs first.
Parameters:
  runnable -
Parameters:
  maxIterations -
Parameters:
  maxTime -
since:
   3.1



getProject
protected IProject getProject()(Code)



setDegradationComment
public void setDegradationComment(String string)(Code)
Set the comment for the receiver to string. Note this is added to the output as is so you will need to add markup if you need a link.
Parameters:
  string - The comment to write out for the test.



startMeasuring
public void startMeasuring()(Code)
Called from within a test case immediately before the code to measure is run. It starts capturing of performance data. Must be followed by a call to PerformanceTestCase.stopMeasuring before subsequent calls to this method or PerformanceTestCase.commitMeasurements .



stopMeasuring
public void stopMeasuring()(Code)



tagIfNecessary
public void tagIfNecessary(String shortName, Dimension dimension)(Code)



waitForBackgroundJobs
public static void waitForBackgroundJobs()(Code)



Fields inherited from org.eclipse.ui.tests.harness.util.UITestCase
protected IWorkbench fWorkbench(Code)(Java Doc)

Methods inherited from org.eclipse.ui.tests.harness.util.UITestCase
public void closeAllPages(IWorkbenchWindow window)(Code)(Java Doc)
public void closeAllTestWindows()(Code)(Java Doc)
protected void doSetUp() throws Exception(Code)(Java Doc)
protected void doTearDown() throws Exception(Code)(Java Doc)
public static void fail(String message, Throwable e)(Code)(Java Doc)
public static IAdaptable getPageInput()(Code)(Java Doc)
protected IWorkbench getWorkbench()(Code)(Java Doc)
protected void manageWindows(boolean manage)(Code)(Java Doc)
public IWorkbenchPage openTestPage(IWorkbenchWindow win)(Code)(Java Doc)
public IWorkbenchPage[] openTestPage(IWorkbenchWindow win, int pageTotal)(Code)(Java Doc)
public IWorkbenchWindow openTestWindow()(Code)(Java Doc)
public IWorkbenchWindow openTestWindow(String perspectiveId)(Code)(Java Doc)
protected static void processEvents()(Code)(Java Doc)
final protected void setUp() throws Exception(Code)(Java Doc)
final protected void tearDown() throws Exception(Code)(Java Doc)
protected void trace(String msg)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.