Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2013-08-05 14:26:33 +0000
committerGerrit Code Review @ Eclipse.org2013-10-07 19:37:50 +0000
commit5fbb975bcf3d241c5317caf6873f9b30c6a2cad9 (patch)
tree704d870a003b78f684012afbb72b94033b947a69
parent71fd97d78249b405a2f655d6520105dacfb41d59 (diff)
downloadorg.eclipse.mylyn.incubator-5fbb975bcf3d241c5317caf6873f9b30c6a2cad9.tar.gz
org.eclipse.mylyn.incubator-5fbb975bcf3d241c5317caf6873f9b30c6a2cad9.tar.xz
org.eclipse.mylyn.incubator-5fbb975bcf3d241c5317caf6873f9b30c6a2cad9.zip
remove redundant test in TaskListPerformanceTest
Change-Id: Ie113fe1ad5a97ee5e6ac59c73f4ef12c3ee16cae Signed-off-by: Tomasz Zarna <tomasz.zarna@tasktop.com>
-rw-r--r--org.eclipse.mylyn.tests.performance/src/org/eclipse/mylyn/tasks/tests/performance/TaskListPerformanceTest.java17
1 files changed, 1 insertions, 16 deletions
diff --git a/org.eclipse.mylyn.tests.performance/src/org/eclipse/mylyn/tasks/tests/performance/TaskListPerformanceTest.java b/org.eclipse.mylyn.tests.performance/src/org/eclipse/mylyn/tasks/tests/performance/TaskListPerformanceTest.java
index 744a98e3..c45f5f1e 100644
--- a/org.eclipse.mylyn.tests.performance/src/org/eclipse/mylyn/tasks/tests/performance/TaskListPerformanceTest.java
+++ b/org.eclipse.mylyn.tests.performance/src/org/eclipse/mylyn/tasks/tests/performance/TaskListPerformanceTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2009 Tasktop Technologies and others.
+ * Copyright (c) 2004, 2013 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -41,21 +41,6 @@ public class TaskListPerformanceTest extends PerformanceTestCase {
taskList.reset();
}
- public void testReadTasksWith4000Tasks() throws Exception {
- final File file = TaskTestUtil.getLocalFile(TASK_LIST_4000);
- final TaskListExternalizer taskListWriter = TasksUiPlugin.getDefault().createTaskListExternalizer();
-
- for (int i = 0; i < 10; i++) {
- startMeasuring();
- taskListWriter.readTaskList(new TransferList(), file);
- stopMeasuring();
- taskList.reset();
- }
-
- commitMeasurements();
- assertPerformance();
- }
-
public void testReadTaskListWith4000Tasks() throws Exception {
final File file = TaskTestUtil.getLocalFile(TASK_LIST_4000);
final TaskListExternalizer taskListWriter = TasksUiPlugin.getDefault().createTaskListExternalizer();

Back to the top