jruaux 2003/01/22 02:32:18
Modified: Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher
CactusLaunchShortcut.java
Log:
Added log feature
Revision Changes Path
1.30 +4 -0
jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/CactusLaunchShortcut.java
Index: CactusLaunchShortcut.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/CactusLaunchShortcut.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- CactusLaunchShortcut.java 17 Jan 2003 17:26:53 -0000 1.29
+++ CactusLaunchShortcut.java 22 Jan 2003 10:32:18 -0000 1.30
@@ -181,6 +181,7 @@
{
try
{
+ CactusPlugin.log("Preparing cactus tests");
prepareCactusTests(theJavaProject, thePM);
}
catch (CoreException e)
@@ -215,6 +216,7 @@
cancelPreparation();
return;
}
+ CactusPlugin.log("Launching tests");
super.launchType(theSearch, theMode);
}
}
@@ -332,6 +334,7 @@
*/
public void testRunEnded(long theElapsedTime)
{
+ CactusPlugin.log("Test run ended");
// For some reason it's impossible to get the active UI shell
// after the JUnit tests ended.
// The commented code below should be used when this problem
@@ -339,6 +342,7 @@
// TODO: Address the crashing problem
try
{
+ CactusPlugin.log("Tearing down cactus tests");
teardownCactusTests(null);
}
catch (CoreException e)
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>