io.leopard.test.mock.MockRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leopard-boot-mock Show documentation
Show all versions of leopard-boot-mock Show documentation
规范、简化Mock代码编写。提供自动属性Mock功能。
The newest version!
package io.leopard.test.mock;
import org.springframework.mock.web.MockHttpServletRequest;
public class MockRequest extends MockHttpServletRequest {
public void setSessionAttribute(String name, Object value) {
this.getSession().setAttribute(name, value);
}
}