blob: 2ebdb8153210b1dc9855aad45fce3f8611f65bbd [file] [log] [blame]
// Copyright 2008 The Apache Software Foundation
//
// 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.
package org.apache.tapestry5.spring;
import org.apache.tapestry5.TapestryFilter;
import org.testng.annotations.Test;
import javax.servlet.ServletContext;
public class TapestryApplicationContextTest extends SpringTestCase
{
@Test
public void no_registry_in_servlet_context()
{
ServletContext context = mockServletContext();
train_getAttribute(context, TapestryFilter.REGISTRY_CONTEXT_NAME, null);
replay();
TapestryApplicationContext tac = new TapestryApplicationContext();
tac.setServletContext(context);
try
{
tac.createBeanFactory();
unreachable();
}
catch (IllegalStateException ex)
{
}
verify();
}
}