[Ejtools-cvs] libraries/adwt/src/test/test/adwt/action ActionTest.java,1.1,1.2
Brought to you by:
letiemble
|
From: <let...@us...> - 2003-09-15 22:37:22
|
Update of /cvsroot/ejtools/libraries/adwt/src/test/test/adwt/action
In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/test/test/adwt/action
Modified Files:
ActionTest.java
Log Message:
Adjust Eclipse build files
Adjust some Javadoc
Review the models for TreeView and ListView : much more lightweight
Convert resources files to UTF-8 to avoid loosing accents
Index: ActionTest.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/test/test/adwt/action/ActionTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ActionTest.java 21 Feb 2003 22:41:28 -0000 1.1
--- ActionTest.java 15 Sep 2003 22:37:15 -0000 1.2
***************
*** 7,12 ****
package test.adwt.action;
- import junit.framework.TestCase;
-
import org.ejtools.adwt.action.Command;
import org.ejtools.adwt.action.CommandAction;
--- 7,10 ----
***************
*** 36,42 ****
import org.ejtools.adwt.action.window.TileAction;
/**
! * @author letiemble
! * @created 21 février 2003
* @version $Revision$
*/
--- 34,41 ----
import org.ejtools.adwt.action.window.TileAction;
+ import junit.framework.TestCase;
+
/**
! * @author Laurent Etiemble
* @version $Revision$
*/
***************
*** 122,136 ****
assertNotNull("Action must be not null", action);
! // Package org.ejtools.adwt.action.help
! action = new CascadeAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAllAction(command);
! assertNotNull("Action must be not null", action);
! action = new InternalFrameAction(command);
! assertNotNull("Action must be not null", action);
! action = new TileAction(command);
! assertNotNull("Action must be not null", action);
}
}
--- 121,135 ----
assertNotNull("Action must be not null", action);
! // Package org.ejtools.adwt.action.help
! action = new CascadeAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAllAction(command);
! assertNotNull("Action must be not null", action);
! action = new InternalFrameAction(command);
! assertNotNull("Action must be not null", action);
! action = new TileAction(command);
! assertNotNull("Action must be not null", action);
}
}
|