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/large/TestLargeGitEqui.java')
-rw-r--r--performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/large/TestLargeGitEqui.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/large/TestLargeGitEqui.java b/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/large/TestLargeGitEqui.java
index 1badf86bd..7517de7bc 100644
--- a/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/large/TestLargeGitEqui.java
+++ b/performance/org.eclipse.emf.compare.tests.performance/src/org/eclipse/emf/compare/tests/performance/git/large/TestLargeGitEqui.java
@@ -23,13 +23,13 @@ import fr.obeo.performance.api.PerformanceMonitor;
/**
* @author <a href="mailto:axel.richard@obeo.fr">Axel Richard</a>
- *
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestLargeGitEqui extends AbstractEMFComparePerformanceTest {
- /**
+ /**
* {@inheritDoc}
+ *
* @see org.eclipse.emf.compare.tests.performance.AbstractEMFComparePerformanceTest#setSUTName()
*/
@Override
@@ -40,7 +40,7 @@ public class TestLargeGitEqui extends AbstractEMFComparePerformanceTest {
@Test
public void a_equiUMLLarge() {
PerformanceMonitor monitor = getPerformance().createMonitor("equiUMLLarge");
-
+
final DataGit data = new LargeGitInputData();
data.match();
data.diff();
@@ -51,11 +51,11 @@ public class TestLargeGitEqui extends AbstractEMFComparePerformanceTest {
});
data.dispose();
}
-
+
@Test
public void b_equiUMLLargeSplit() {
PerformanceMonitor monitor = getPerformance().createMonitor("equiUMLLargeSplit");
-
+
final DataGit data = new LargeSplitGitInputData();
data.match();
data.diff();

Back to the top