Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/TestGitReq.java')
-rw-r--r--performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/TestGitReq.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/TestGitReq.java b/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/TestGitReq.java
index 624786391..946061659 100644
--- a/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/TestGitReq.java
+++ b/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/TestGitReq.java
@@ -19,6 +19,7 @@ import org.junit.runners.MethodSorters;
import data.models.DataGit;
import data.models.NominalGitInputData;
import data.models.SmallGitInputData;
+import data.models.SmallSplitGitInputData;
import fr.obeo.performance.api.PerformanceMonitor;
/**
@@ -66,4 +67,19 @@ public class TestGitReq extends AbstractEMFComparePerformanceTest {
});
data.dispose();
}
+
+ @Test
+ public void c_matchIdUMLSmallSplit() {
+ PerformanceMonitor monitor = getPerformance().createMonitor("reqUMLSmallSplit");
+
+ final DataGit data = new SmallSplitGitInputData();
+ data.match();
+ data.diff();
+ monitor.measure(warmup(), getStepsNumber(), new Runnable() {
+ public void run() {
+ data.req();
+ }
+ });
+ data.dispose();
+ }
}

Back to the top