I am not able to find Struts 1.2.0 in CVS. I cannot even find the tag STRUTS_1_2_0. Can you please guide me?
I'm not sure what you mean. Have you got CVS installed? Have you followed these instructions?
http://jakarta.apache.org/site/cvsindex.html
The Struts module is "jakarta-struts" When you check it out, you will get CVS HEAD. If you want Struts 1.2.0 (bugs and all), you must use your CVS client to check out Struts to that version. I use the command-line CVS, so for that, I would do something like this:
cvs -d $APACHE_CVSROOT co -r STRUTS_1_2_0 jakarta-struts
but like I said, that was a still-born release, so you're better of with CVS HEAD than with that version
cvs -d $APACHE_CVSROOT co jakarta-struts
Also, When I run the ant test.tomcat.all I get the following compilation error
-------------------------------------------------------------------
/usr/local/struts/src/src/test/org/apache/struts/tiles/TestTilesPlugin.java:239: cannot resolve symbol
[javac] symbol : method assertNotSame
(java.lang.String,org.apache.struts.tiles.DefinitionsFactory,org.apache.struts.tiles.DefinitionsFactory)
[javac] location: class org.apache.struts.tiles.TestTilesPlugin
[javac] assertNotSame("Factory from different modules",
factory1, factory2);
--------------------------------------------------------------------
I guess this method is available in junit framework. And I am sure it has imported teh package correctly since I am not getting compilation error message in methods assetEquals() and assertNotNull().
You are using JUnit 3.7. Assert.assertNotSame was added in JUnit 3.8. You should probably be using JUnit 3.8.1.
Joe
--
Joe Germuska [EMAIL PROTECTED] http://blog.germuska.com "Imagine if every Thursday your shoes exploded if you tied them the usual way. This happens to us all the time with computers, and nobody thinks of complaining."
-- Jef Raskin
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
