Author: dmaliarevich
Date: 2010-05-14 08:23:04 -0400 (Fri, 14 May 2010)
New Revision: 22082
Modified:
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/src/org/jboss/tools/jst/web/ui/test/WebWizardsTest.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-6257 , junits for duplicated wizards were
removed.
Modified:
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/src/org/jboss/tools/jst/web/ui/test/WebWizardsTest.java
===================================================================
---
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/src/org/jboss/tools/jst/web/ui/test/WebWizardsTest.java 2010-05-14
12:14:12 UTC (rev 22081)
+++
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/src/org/jboss/tools/jst/web/ui/test/WebWizardsTest.java 2010-05-14
12:23:04 UTC (rev 22082)
@@ -36,11 +36,11 @@
*/
public class WebWizardsTest extends AbstractModelNewWizardTest {
- public void testNewCssWizardInstanceIsCreated() {
+ public void _testNewCssWizardInstanceIsCreated() {
testNewWizardInstanceIsCreated(NewCSSFileWizard.class.getName());
}
- public void testNewJsWizardInstanceIsCreated() {
+ public void _testNewJsWizardInstanceIsCreated() {
testNewWizardInstanceIsCreated(NewJSFileWizard.class.getName());
}
@@ -48,14 +48,19 @@
testNewWizardInstanceIsCreated(NewWebFileWizard.class.getName());
}
- public void testNewJspWizardInstanceIsCreated() {
+ public void _testNewJspWizardInstanceIsCreated() {
testNewWizardInstanceIsCreated(NewJSPFileWizard.class.getName());
}
- //rewritten by Maksim Areshkau, as fix for
https://jira.jboss.org/jira/browse/JBIDE-6216,
- //https://jira.jboss.org/jira/browse/JBIDE-6190
+ /*
+ * rewritten by Maksim Areshkau, as fix for
+ *
https://jira.jboss.org/jira/browse/JBIDE-6216,
+ *
https://jira.jboss.org/jira/browse/JBIDE-6190
+ */
public void testNewXhtmlWizardInstanceIsCreated() {
- //commented by Maksim Areshkau, because in this methid not called
- //init for wizard
+ /*
+ * commented by Maksim Areshkau,
+ * because in this method not called init for wizard
+ */
//testNewWizardInstanceIsCreated(NewXHTMLWizard.class.getName());
IWorkbenchWizard
aWizard = (IWorkbenchWizard) WorkbenchUtils.findWizardByDefId(
@@ -64,7 +69,9 @@
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
aWizard);
try {
- //here we show view to get initialized selection
+ /*
+ * here we show view to get initialized selection
+ */
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView("org.eclipse.jdt.ui.PackageExplorer");
//$NON-NLS-1$
} catch (PartInitException e) {
fail(e.toString());
@@ -85,7 +92,7 @@
}
}
- public void testNewHtmlWizardInstanceIsCreated() {
+ public void _testNewHtmlWizardInstanceIsCreated() {
testNewWizardInstanceIsCreated(NewHTMLFileWizard.class.getName());
}