Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.ide.dev/developer/src-old/tests/BugzillaTaskDataMigrationTest.java')
-rw-r--r--org.eclipse.mylyn.ide.dev/developer/src-old/tests/BugzillaTaskDataMigrationTest.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/org.eclipse.mylyn.ide.dev/developer/src-old/tests/BugzillaTaskDataMigrationTest.java b/org.eclipse.mylyn.ide.dev/developer/src-old/tests/BugzillaTaskDataMigrationTest.java
deleted file mode 100644
index a5714a69..00000000
--- a/org.eclipse.mylyn.ide.dev/developer/src-old/tests/BugzillaTaskDataMigrationTest.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004 - 2006 University Of British Columbia 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
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * University Of British Columbia - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.mylyn.bugzilla.tests;
-
-import org.eclipse.mylyn.internal.bugzilla.core.BugzillaTask;
-import org.eclipse.mylyn.internal.bugzilla.ui.tasklist.BugzillaTaskEditorInput;
-import org.eclipse.mylyn.tasks.core.RepositoryTaskAttribute;
-
-
-/**
- * @author Rob Elves
- */
-public class BugzillaTaskDataMigrationTest extends AbstractBugzillaTest {
-
- public void testMigrateDescriptionToReadOnly() throws Exception {
- init222();
- BugzillaTask task = generateLocalTaskAndDownload("1");
- assertNotNull(task);
- assertNotNull(task.getTaskData());
- RepositoryTaskAttribute attrib = task.getTaskData().getDescriptionAttribute();
- assertNotNull(attrib);
- attrib.setReadOnly(false);
- BugzillaTaskEditorInput editorInput = new BugzillaTaskEditorInput(repository, task, false);
- assertTrue(editorInput.getBugTask().getTaskData().getDescriptionAttribute().isReadOnly());
- }
-}

Back to the top