* 6/28/13 WilliamZhu(allwefantasy@gmail.com)
*/
public class BaseControllerTest extends IocTest {
public RestResponse runAction(String path, Map params, RestRequest.Method method) throws Exception {
RestResponse response = new MockRestResponse();
Map newParams = new HashMap();
for (Object key : params.keySet()) {
newParams.put(key, params.get(key).toString());
}