User: user57
Date: 01/07/09 19:34:04
Modified: src/main/org/jboss/test/idgen/test Main.java
Log:
o changed all deploy tests to deploy as a test and to not call System.exit().
this should allow reports to be generated for tests that fail to deploy.
o modified run_tests.xml basic-security-tests to not-halt on error, so that
test-and-report will produce reports even if the security tests fail.
Revision Changes Path
1.3 +25 -27 jbosstest/src/main/org/jboss/test/idgen/test/Main.java
Index: Main.java
===================================================================
RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/idgen/test/Main.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Main.java 2001/07/06 02:29:20 1.2
+++ Main.java 2001/07/10 02:34:04 1.3
@@ -21,7 +21,7 @@
*
* @see <related>
* @author $Author: user57 $
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
*/
public class Main
extends junit.framework.TestCase
@@ -46,16 +46,16 @@
IdGeneratorHome home = (IdGeneratorHome)new
InitialContext().lookup(IdGeneratorHome.JNDI_NAME);
IdGenerator generator = home.create();
- generator.getNewId("Account");
generator.getNewId("Account");
generator.getNewId("Account");
-
- generator.getNewId("Customer");
- generator.getNewId("Customer");
- generator.getNewId("Customer");
+ generator.getNewId("Account");
- generator.remove();
- }
+ generator.getNewId("Customer");
+ generator.getNewId("Customer");
+ generator.getNewId("Customer");
+
+ generator.remove();
+ }
protected void setUp()
throws Exception
@@ -79,24 +79,22 @@
}
}
- public static Test suite() {
- TestSuite suite = new TestSuite();
-
- try {
- String filename = "../deploy/idgen.jar";
- System.out.println("Deploying...");
- Deploy.deploy(filename);
-
- suite.addTest(new TestSuite(Main.class));
- // add a test case to undeploy our support applications
- suite.addTest(new Deploy.Undeployer(filename));
- }
- catch (Throwable t) {
- t.printStackTrace();
- System.exit(0);
- }
+ /**
+ * Setup the test suite.
+ */
+ public static Test suite() {
+ TestSuite suite = new TestSuite();
+
+ // add a test case to deploy our support applications
+ String filename = "idgen.jar";
+ suite.addTest(new Deploy.Deployer(filename));
- return suite;
- }
+ suite.addTest(new TestSuite(Main.class));
+
+ // add a test case to undeploy our support applications
+ suite.addTest(new Deploy.Undeployer(filename));
+
+ return suite;
+ }
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development