KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openi > web > controller > analysis > NewAnalysisFormControllerTest


1 /*********************************************************************************
2  * The contents of this file are subject to the OpenI Public License Version 1.0
3  * ("License"); You may not use this file except in compliance with the
4  * License. You may obtain a copy of the License at
5  * http://www.openi.org/docs/LICENSE.txt
6  *
7  * Software distributed under the License is distributed on an "AS IS" basis,
8  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
9  * the specific language governing rights and limitations under the License.
10  *
11  * The Original Code is: OpenI Open Source
12  *
13  * The Initial Developer of the Original Code is Loyalty Matrix, Inc.
14  * Portions created by Loyalty Matrix, Inc. are
15  * Copyright (C) 2005 Loyalty Matrix, Inc.; All Rights Reserved.
16  *
17  * Contributor(s): ______________________________________.
18  *
19  ********************************************************************************/

20 package org.openi.web.controller.analysis;
21
22 import junit.framework.TestCase;
23 import org.apache.log4j.Logger;
24 import org.openi.analysis.Datasource;
25 import org.openi.application.Application;
26 import org.openi.project.Project;
27 import org.openi.project.ProjectContext;
28 import org.openi.test.Util;
29 import org.openi.xml.*;
30 import org.springframework.context.ApplicationContext;
31 import org.springframework.context.support.FileSystemXmlApplicationContext;
32 import org.springframework.mock.web.*;
33 import org.springframework.validation.BindException;
34 import org.springframework.web.servlet.ModelAndView;
35 import java.io.IOException JavaDoc;
36 import java.util.Iterator JavaDoc;
37 import java.util.Map JavaDoc;
38 import javax.servlet.ServletException JavaDoc;
39 import javax.servlet.http.HttpServletRequest JavaDoc;
40 import javax.servlet.http.HttpServletResponse JavaDoc;
41
42
43 /**
44  * @author Dipendra Pokhrel <br>
45  * @version $Revision: 1.3 $ $Date: 2006/04/12 00:39:12 $ <br>
46  *
47  * Test case for new analysis form controller
48  *
49  */

50 public class NewAnalysisFormControllerTest extends TestCase {
51     private static Logger logger = Logger.getLogger(NewAnalysisFormControllerTest.class);
52
53     public NewAnalysisFormControllerTest(String JavaDoc arg0) {
54         super(arg0);
55     }
56
57     /**
58      *
59      * @throws IOException
60      */

61     public void setUp() throws Exception JavaDoc {
62     }
63
64     public void testNewAnalysis() throws Exception JavaDoc {
65     }
66
67     public void testChangeDatasource() throws Exception JavaDoc {
68     }
69 }
70
Popular Tags