Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.tests/src')
-rw-r--r--org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java92
1 files changed, 46 insertions, 46 deletions
diff --git a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java
index 5226c6e24..772880dae 100644
--- a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java
+++ b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java
@@ -1,46 +1,46 @@
-/*******************************************************************************
- * Copyright (c) 2011 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
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Tasktop Technologies - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.mylyn.tasks.tests.ui.editor;
-
-import junit.framework.TestCase;
-
-import org.eclipse.mylyn.internal.tasks.core.TaskAttachment;
-import org.eclipse.mylyn.internal.tasks.ui.editors.AttachmentTableLabelProvider;
-import org.eclipse.mylyn.tasks.tests.TaskTestUtil;
-
-/**
- * @author Thomas Ehrnhoefer
- * @author Steffen Pingel
- */
-public class AttachmentTableLabelProviderTest extends TestCase {
-
- public void testGetAttachmentId() {
- TaskAttachment attachment = TaskTestUtil.createMockTaskAttachment("1");
- AttachmentTableLabelProvider labelProvider = new AttachmentTableLabelProvider(null, null);
-
- attachment.setUrl(null);
- assertEquals("", labelProvider.getColumnText(attachment, 5));
-
- attachment.setUrl("");
- assertEquals("", labelProvider.getColumnText(attachment, 5));
-
- attachment.setUrl("http://testi.ng");
- assertEquals("", labelProvider.getColumnText(attachment, 5));
-
- attachment.setUrl("http://testi.ng/?some=parameter");
- assertEquals("", labelProvider.getColumnText(attachment, 5));
-
- attachment.setUrl("http://testi.ng/?id=myid");
- assertEquals("myid", labelProvider.getColumnText(attachment, 5));
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2011 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.tasks.tests.ui.editor;
+
+import junit.framework.TestCase;
+
+import org.eclipse.mylyn.internal.tasks.core.TaskAttachment;
+import org.eclipse.mylyn.internal.tasks.ui.editors.AttachmentTableLabelProvider;
+import org.eclipse.mylyn.tasks.tests.TaskTestUtil;
+
+/**
+ * @author Thomas Ehrnhoefer
+ * @author Steffen Pingel
+ */
+public class AttachmentTableLabelProviderTest extends TestCase {
+
+ public void testGetAttachmentId() {
+ TaskAttachment attachment = TaskTestUtil.createMockTaskAttachment("1");
+ AttachmentTableLabelProvider labelProvider = new AttachmentTableLabelProvider(null, null);
+
+ attachment.setUrl(null);
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("");
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("http://testi.ng");
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("http://testi.ng/?some=parameter");
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("http://testi.ng/?id=myid");
+ assertEquals("myid", labelProvider.getColumnText(attachment, 5));
+ }
+
+}

Back to the top