Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Winkler2011-12-15 14:50:32 +0000
committerStefan Winkler2011-12-15 14:50:32 +0000
commitcfcd299a9eee865c17c611f0fd2799fb3fcdd045 (patch)
tree2c046090d92ad3a6dfed32d7529a0631ffdf89d2
parentf5cd908ee487c4e4bf80722b0ad27958a342aa75 (diff)
downloadcdo-cfcd299a9eee865c17c611f0fd2799fb3fcdd045.tar.gz
cdo-cfcd299a9eee865c17c611f0fd2799fb3fcdd045.tar.xz
cdo-cfcd299a9eee865c17c611f0fd2799fb3fcdd045.zip
[237158] Provide Performance TestCase committers/swinkler/performance-framework
https://bugs.eclipse.org/bugs/show_bug.cgi?id=237158
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/AllPerformanceTests.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/AllPerformanceTests.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/AllPerformanceTests.java
index d53d085bee..8e91a41e4c 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/AllPerformanceTests.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/AllPerformanceTests.java
@@ -22,6 +22,15 @@ import java.util.List;
*/
public abstract class AllPerformanceTests extends PerformanceTestSuite
{
+ public AllPerformanceTests()
+ {
+ }
+
+ public AllPerformanceTests(int runsPerTestCase)
+ {
+ super(runsPerTestCase);
+ }
+
@Override
protected void initTestClasses(List<Class<? extends ConfigTest>> testClasses, IScenario scenario)
{

Back to the top