Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.swtbot.swt.recorder.test/src/org/eclipse/swtbot/swt/recorder/text/ShellEventListenerTest.java')
-rw-r--r--org.eclipse.swtbot.swt.recorder.test/src/org/eclipse/swtbot/swt/recorder/text/ShellEventListenerTest.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/org.eclipse.swtbot.swt.recorder.test/src/org/eclipse/swtbot/swt/recorder/text/ShellEventListenerTest.java b/org.eclipse.swtbot.swt.recorder.test/src/org/eclipse/swtbot/swt/recorder/text/ShellEventListenerTest.java
deleted file mode 100644
index 85edd9a1..00000000
--- a/org.eclipse.swtbot.swt.recorder.test/src/org/eclipse/swtbot/swt/recorder/text/ShellEventListenerTest.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008 Ketan Padegaonkar 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:
- * Ketan Padegaonkar - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swtbot.swt.recorder.text;
-
-import org.eclipse.swtbot.swt.recorder.AbstractSWTBotRecorderTest;
-import org.junit.Test;
-
-/**
- * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com>
- * @version $Id$
- */
-public class ShellEventListenerTest extends AbstractSWTBotRecorderTest {
-
- @Test
- public void shellActivationRecorded() throws Exception {
- bot.shell("SWT Custom Controls").activate();
- assertEvent("bot.shell(\"SWT Custom Controls\").activate();");
- }
-
- @Test
- public void shellActivationRecorded2() throws Exception {
- bot.shell("SWT Controls").activate();
- assertEvent("bot.shell(\"SWT Controls\").activate();");
- }
-}

Back to the top