actiondispatchedtestassertinterceptor.java
来自「jworks program」· Java 代码 · 共 61 行
JAVA
61 行
/*
* Copyright (c) 2002-2003 by OpenSymphony
* All rights reserved.
*/
/*
* Created on 2/10/2003
*
*/
package org.softme.jworks.dispatcher;
import org.softme.jworks.TestAction;
import com.opensymphony.xwork.ActionInvocation;
import com.opensymphony.xwork.interceptor.Interceptor;
import junit.framework.Assert;
/**
* @author CameronBraid
*/
public class ActionDispatchedTestAssertInterceptor implements Interceptor {
//~ Constructors ///////////////////////////////////////////////////////////
/**
*
*/
public ActionDispatchedTestAssertInterceptor() {
super();
}
//~ Methods ////////////////////////////////////////////////////////////////
/* (non-Javadoc)
* @see com.opensymphony.xwork.interceptor.Interceptor#destroy()
*/
public void destroy() {
}
/* (non-Javadoc)
* @see com.opensymphony.xwork.interceptor.Interceptor#init()
*/
public void init() {
}
/* (non-Javadoc)
* @see com.opensymphony.xwork.interceptor.Interceptor#intercept(com.opensymphony.xwork.ActionInvocation)
*/
public String intercept(ActionInvocation invocation) throws Exception {
Assert.assertTrue(invocation.getAction() instanceof TestAction);
TestAction testAction = (TestAction) invocation.getAction();
Assert.assertEquals("bar", testAction.getFoo());
String result = invocation.invoke();
return result;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?