Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-02-16 13:40:56 +0000
committerAlexander Kurtakov2018-02-16 13:45:18 +0000
commita5d490a262a6e2f6f3dfcb36372dba07b98566a7 (patch)
tree819653f454bcbf9338efdcbd079bb0cc40fa2a4d /org.eclipse.ua.tests/base/org/eclipse/ua
parentc2db55c5f733313a0a9c9665fdf5e8013aedcfe1 (diff)
downloadeclipse.platform.ua-a5d490a262a6e2f6f3dfcb36372dba07b98566a7.tar.gz
eclipse.platform.ua-a5d490a262a6e2f6f3dfcb36372dba07b98566a7.tar.xz
eclipse.platform.ua-a5d490a262a6e2f6f3dfcb36372dba07b98566a7.zip
Remove tests from ua.tests. Change-Id: I46d1c2053b55e3253397da90c8c45a5167b59f1f Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.ua.tests/base/org/eclipse/ua')
-rw-r--r--org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllTests.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllTests.java b/org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllTests.java
index 7f7de2fae..ce2ef3c4b 100644
--- a/org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllTests.java
+++ b/org.eclipse.ua.tests/base/org/eclipse/ua/tests/AllTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2016 IBM Corporation and others.
+ * Copyright (c) 2005, 2018 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
@@ -10,7 +10,6 @@
*******************************************************************************/
package org.eclipse.ua.tests;
-import org.eclipse.ua.tests.browser.AllBrowserTests;
import org.eclipse.ua.tests.cheatsheet.AllCheatSheetTests;
import org.eclipse.ua.tests.help.AllHelpTests;
import org.eclipse.ua.tests.intro.AllIntroTests;
@@ -21,9 +20,6 @@ import org.junit.runners.Suite;
* Tests all user assistance functionality (automated).
*/
@RunWith(Suite.class)
-@Suite.SuiteClasses({AllCheatSheetTests.class,
-AllIntroTests.class,
-AllHelpTests.class,
-AllBrowserTests.class})
+@Suite.SuiteClasses({ AllCheatSheetTests.class, AllIntroTests.class, AllHelpTests.class })
public class AllTests {
}

Back to the top