Package org.nanocontainer.nanowar.struts

Source Code of org.nanocontainer.nanowar.struts.PicoRequestProcessorTestCase

/*****************************************************************************
* Copyright (C) NanoContainer Organization. All rights reserved.            *
* ------------------------------------------------------------------------- *
* The software in this package is published under the terms of the BSD      *
* style license a copy of which has been included with this distribution in *
* the LICENSE.txt file.                                                     *
*                                                                           *
*****************************************************************************/
package org.nanocontainer.nanowar.struts;

import java.io.IOException;

import org.nanocontainer.nanowar.TestAction;

/**
* @author Stephen Molitor
*/
public class PicoRequestProcessorTestCase extends AbstractActionTestCase {

    public void testProcessActionCreate() throws IOException {
        PicoRequestProcessor requestProcessor = new PicoRequestProcessor();
        TestAction action = (TestAction) requestProcessor.processActionCreate(request, response, mapping);
        assertNotNull(action);
        assertSame(service, action.getService());
    }

}
TOP

Related Classes of org.nanocontainer.nanowar.struts.PicoRequestProcessorTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.