Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Link.java')
-rw-r--r--tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Link.java190
1 files changed, 0 insertions, 190 deletions
diff --git a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Link.java b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Link.java
deleted file mode 100644
index 0c17e63124..0000000000
--- a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Link.java
+++ /dev/null
@@ -1,190 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.tests.junit;
-
-import org.eclipse.swt.*;
-import org.eclipse.swt.events.*;
-import org.eclipse.swt.widgets.*;
-
-import junit.framework.*;
-import junit.textui.*;
-
-/**
- * Automated Test Suite for class org.eclipse.swt.widgets.Link
- *
- * @see org.eclipse.swt.widgets.Link
- */
-public class Test_org_eclipse_swt_widgets_Link extends Test_org_eclipse_swt_widgets_Control {
-
- Link link;
-
-public Test_org_eclipse_swt_widgets_Link(String name) {
- super(name);
-}
-
-public static void main(String[] args) {
- TestRunner.run(suite());
-}
-
-protected void setUp() {
- super.setUp();
- link = new Link(shell, SWT.NONE);
- setWidget(link);
-}
-
-protected void tearDown() {
- super.tearDown();
-}
-
-public void test_ConstructorLorg_eclipse_swt_widgets_CompositeI() {
- // Test Link(Composite parent, int style)
- link = new Link(shell, SWT.NULL);
- link.dispose();
- link = new Link(shell, SWT.NONE);
- link.dispose();
- link = new Link(shell, SWT.BORDER);
- link.dispose();
- try {
- link = new Link(null, 0);
- fail("No exception thrown for parent == null");
- }
- catch (IllegalArgumentException e) {
- }
-}
-
-public void test_addSelectionListenerLorg_eclipse_swt_events_SelectionListener() {
- listenerCalled = false;
- SelectionListener listener = new SelectionListener() {
- public void widgetSelected(SelectionEvent e) {
- listenerCalled = true;
- };
- public void widgetDefaultSelected(SelectionEvent e) {
- };
- };
-
- try {
- link.addSelectionListener(null);
- fail("No exception thrown for addSelectionListener with null argument");
- } catch (IllegalArgumentException e) {
- }
-
- link.addSelectionListener(listener);
- link.notifyListeners(SWT.Selection, new Event());
- assertTrue(listenerCalled);
-
- try {
- link.removeSelectionListener(null);
- fail("No exception thrown for removeSelectionListener with null argument");
- } catch (IllegalArgumentException e) {
- }
- listenerCalled = false;
- link.removeSelectionListener(listener);
- link.notifyListeners(SWT.Selection, new Event());
- assertFalse(listenerCalled);
-}
-
-public void test_computeSizeIIZ() {
- link.computeSize(0, 0);
-
- link.computeSize(0, 0, false);
-
- link.computeSize(-10, -10);
-
- link.computeSize(-10, -10, false);
-
- link.computeSize(10, 10);
-
- link.computeSize(10, 10, false);
-
- link.computeSize(10000, 10000);
-
- link.computeSize(10000, 10000, false);
-}
-
-public void test_getText() {
- // tested in test_setTextLjava_lang_String()
-}
-
-public void test_removeSelectionListenerLorg_eclipse_swt_events_SelectionListener() {
- // tested in test_addSelectionListenerLorg_eclipse_swt_events_SelectionListener()
-}
-
-public void test_setTextLjava_lang_String() {
- String[] cases = {
- "",
- "a",
- "aa",
- "aaaaaaaaaa",
- "a&",
- "&",
- "&a",
- "&a&",
- "&a",
- "&<a>",
- "<a>",
- "&a<a>",
- "<a></a>",
- "<a></a>&",
- "<a></a>a&",
- "<a></a>&a",
- "&a<a>a</a>&a",
- "&a<a>&a</a>&a",
- "Text <a href=\"url.com\">Link</a> text <A color=#212121>Link 2</A> ",
- "Text<a \t xxx=\"yyy \" id=\"ids\" href=\"HREF\" >Link< /a>End",
- "Te&&xt &text && <a>L&ink</a> h&i <a>fe&&lipe</a> &l &end&&",
- "Text <a id=\"1\">Link</a> something <a href=\"bla bla2\" >Link2</a> somethingelse <a>Link3 large large</a>. some text to test this wrapping thing <A href=\"last\">this is suppose to be a very long link text the spraws over several lines in the text layout</a>.end",
- "The SWT component is designed to provide <A>efficient</A>, <A>portable</A> <A>access to the user-interface facilities of the operating systems</A> on which it is implemented.",
- "some text",
- "ldkashdoehufweovcnhslvhregojebckreavbkuhxbiufvcyhbifuyewvbiureyd.,cmnesljliewjfchvbwoifivbeworixuieurvbiuvbohflksjeahfcliureafgyciabelitvyrwtlicuyrtliureybcliuyreuceyvbliureybct",
- "\n \n \b \t ",
- "\0"};
- for (int i=0; i<cases.length; i++){
- link.setText(cases[i]);
- assertEquals(link.getText() , cases[i]);
- }
- try {
- link.setText(null);
- fail("No exception thrown for text == null");
- } catch (IllegalArgumentException e) {
- }
-}
-
-public static Test suite() {
- TestSuite suite = new TestSuite();
- java.util.Vector methodNames = methodNames();
- java.util.Enumeration e = methodNames.elements();
- while (e.hasMoreElements()) {
- suite.addTest(new Test_org_eclipse_swt_widgets_Link((String)e.nextElement()));
- }
- return suite;
-}
-public static java.util.Vector methodNames() {
- java.util.Vector methodNames = new java.util.Vector();
- methodNames.addElement("test_ConstructorLorg_eclipse_swt_widgets_CompositeI");
- methodNames.addElement("test_addSelectionListenerLorg_eclipse_swt_events_SelectionListener");
- methodNames.addElement("test_computeSizeIIZ");
- methodNames.addElement("test_getText");
- methodNames.addElement("test_removeSelectionListenerLorg_eclipse_swt_events_SelectionListener");
- methodNames.addElement("test_setTextLjava_lang_String");
- methodNames.addAll(Test_org_eclipse_swt_widgets_Control.methodNames()); // add superclass method names
- return methodNames;
-}
-protected void runTest() throws Throwable {
- if (getName().equals("test_ConstructorLorg_eclipse_swt_widgets_CompositeI")) test_ConstructorLorg_eclipse_swt_widgets_CompositeI();
- else if (getName().equals("test_addSelectionListenerLorg_eclipse_swt_events_SelectionListener")) test_addSelectionListenerLorg_eclipse_swt_events_SelectionListener();
- else if (getName().equals("test_computeSizeIIZ")) test_computeSizeIIZ();
- else if (getName().equals("test_getText")) test_getText();
- else if (getName().equals("test_removeSelectionListenerLorg_eclipse_swt_events_SelectionListener")) test_removeSelectionListenerLorg_eclipse_swt_events_SelectionListener();
- else if (getName().equals("test_setTextLjava_lang_String")) test_setTextLjava_lang_String();
- else super.runTest();
-}
-
-}

Back to the top