Author: dgolovin
Date: 2007-06-29 16:19:38 -0400 (Fri, 29 Jun 2007)
New Revision: 2227
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.tets/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/view/SeamComponentsViewTest.java
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamActionNewWizardTest.java
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamFormNewWizardTest.java
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamProjectNewWizardTest.java
Log:
http://jira.jboss.com/jira/browse/EXIN-221
New Seam Project Wizard
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.tets/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.tets/META-INF/MANIFEST.MF 2007-06-29 19:54:06
UTC (rev 2226)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.tets/META-INF/MANIFEST.MF 2007-06-29 20:19:38
UTC (rev 2227)
@@ -5,3 +5,6 @@
Bundle-Version: 1.0.0
Bundle-Vendor: Red Hat, Inc.
Require-Bundle: org.junit
+Export-Package: org.jboss.tools.seam.ui.test,
+ org.jboss.tools.seam.ui.test.view,
+ org.jboss.tools.seam.ui.test.wizard
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java 2007-06-29
19:54:06 UTC (rev 2226)
+++
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java 2007-06-29
20:19:38 UTC (rev 2227)
@@ -14,6 +14,7 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.jboss.tools.seam.ui.test.view.SeamComponentsViewTest;
import org.jboss.tools.seam.ui.test.wizard.SeamFormNewWizardTest;
import org.jboss.tools.seam.ui.test.wizard.SeamProjectNewWizardTest;
@@ -25,8 +26,10 @@
public static Test suite() {
TestSuite suite = new TestSuite(SeamUiAllTests.class.getName());
+ suite.addTestSuite(SeamComponentsViewTest.class);
+ suite.addTestSuite(SeamProjectNewWizardTest.class);
suite.addTestSuite(SeamFormNewWizardTest.class);
- suite.addTestSuite(SeamProjectNewWizardTest.class);
+ suite.addTestSuite(SeamFormNewWizardTest.class);
return suite;
}
}
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/view/SeamComponentsViewTest.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/view/SeamComponentsViewTest.java 2007-06-29
19:54:06 UTC (rev 2226)
+++
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/view/SeamComponentsViewTest.java 2007-06-29
20:19:38 UTC (rev 2227)
@@ -39,28 +39,28 @@
*
*/
public void testSeamComponentsViewisDefined() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamComponentsViewIsViewMenuOnPerspective() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamComponentsViewIsShowedOnPerspective() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamComponentsViewInstamceIsCreated() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
}
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamActionNewWizardTest.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamActionNewWizardTest.java 2007-06-29
19:54:06 UTC (rev 2226)
+++
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamActionNewWizardTest.java 2007-06-29
20:19:38 UTC (rev 2227)
@@ -38,20 +38,20 @@
*
*/
public void testSeamActionNewWizardIsDefined() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamActionNewWizardInstanceIsCreated() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamActionNewWizardIsAvailableInNewMenu() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
}
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamFormNewWizardTest.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamFormNewWizardTest.java 2007-06-29
19:54:06 UTC (rev 2226)
+++
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamFormNewWizardTest.java 2007-06-29
20:19:38 UTC (rev 2227)
@@ -36,20 +36,20 @@
*
*/
public void testSeamFormNewWizardIsDefined() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamFormNewWizardInstanceIsCreated() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamFormNewWizardIsAvailableInNewMenu() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
}
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamProjectNewWizardTest.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamProjectNewWizardTest.java 2007-06-29
19:54:06 UTC (rev 2226)
+++
trunk/seam/tests/org.jboss.tools.seam.ui.tets/src/org/jboss/tools/seam/ui/test/wizard/SeamProjectNewWizardTest.java 2007-06-29
20:19:38 UTC (rev 2227)
@@ -37,20 +37,20 @@
*
*/
public void testSeamProjectNewWizardIsDefined() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamProjectNewWizardInstanceIsCreated() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
/**
*
*/
public void testSeamProjectNewWizardIsAvailableInNewMenu() {
- throw new NotImplementedException();
+ fail("Not yet implemented");
}
}