org.springframework.webflow.test.package-info Maven / Gradle / Ivy
/*
* Copyright 2004-2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Support for testing flows and their associated artifacts.
*
* When you want to unit test one of your flows the
* {@link org.springframework.webflow.test.execution.AbstractFlowExecutionTests} and its associated subclasses provide
* a base you can extend.
*
*
When unit testing flow artifacts such as actions in isolation, the
* {@link org.springframework.webflow.test.MockRequestContext} is of particular interest.
*
*
All mock implementations provided by this package are NOT intended to be used for anything but standalone unit
* tests. They are simple state holders, stub implementations, at least if you follow
* Martin Fowler's reasoning. These classes
* are called Mocks to be consistent with the naming convention in the rest of the Spring framework
* (e.g. {@code MockHttpServletRequest}, ...).
*/
package org.springframework.webflow.test;