|
From: <tr...@us...> - 2003-09-16 05:19:08
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/command
In directory sc8-pr-cvs1:/tmp/cvs-serv31207/modules/core/src/com/babeldoc/core/pipeline/command
Modified Files:
PipelineCommand.java PipelineCommandTest.java
Log Message:
updated the commons-lang component. going through all the TODOs and remediating the issues.
Index: PipelineCommand.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/command/PipelineCommand.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** PipelineCommand.java 12 Aug 2003 23:44:44 -0000 1.10
--- PipelineCommand.java 16 Sep 2003 05:19:01 -0000 1.11
***************
*** 115,121 ****
/**
! * TODO: DOCUMENT ME!
*
! * @param commandLine DOCUMENT ME!
*/
public void execute(CommandLine commandLine) {
--- 115,121 ----
/**
! * Execute the command line
*
! * @param commandLine to be executed
*/
public void execute(CommandLine commandLine) {
Index: PipelineCommandTest.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/command/PipelineCommandTest.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PipelineCommandTest.java 27 Jun 2003 02:19:58 -0000 1.3
--- PipelineCommandTest.java 16 Sep 2003 05:19:01 -0000 1.4
***************
*** 69,72 ****
--- 69,73 ----
import junit.framework.TestCase;
import junit.framework.TestSuite;
+ import com.babeldoc.core.EnvironmentLoader;
***************
*** 97,103 ****
/**
! * TODO: DOCUMENT ME!
*
! * @return DOCUMENT ME!
*/
public static Test suite() {
--- 98,104 ----
/**
! * Make a test suite
*
! * @return get the test suite
*/
public static Test suite() {
***************
*** 108,112 ****
/**
! * TODO: DOCUMENT ME!
*/
public void testPipelineAndStage() {
--- 109,113 ----
/**
! * setup the test pipeline and stage
*/
public void testPipelineAndStage() {
***************
*** 118,133 ****
/**
! * TODO: DOCUMENT ME!
*
! * @throws Exception DOCUMENT ME!
*/
protected void setUp() throws Exception {
! com.babeldoc.core.EnvironmentLoader.loadEnvironment();
}
/**
! * TODO: DOCUMENT ME!
*
! * @throws Exception DOCUMENT ME!
*/
protected void tearDown() throws Exception {
--- 119,134 ----
/**
! * Setup the test
*
! * @throws Exception
*/
protected void setUp() throws Exception {
! EnvironmentLoader.loadEnvironment();
}
/**
! * Teardown the test
*
! * @throws Exception
*/
protected void tearDown() throws Exception {
|